Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
MAGE Multiview Artificial Generation Engine
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dev
MAGE Multiview Artificial Generation Engine
Commits
c16af906
Commit
c16af906
authored
5 years ago
by
Baptiste Bauvin
Browse files
Options
Downloads
Patches
Plain Diff
Modified docker file"
parent
5e87eebe
No related branches found
No related tags found
No related merge requests found
Pipeline
#4729
failed
5 years ago
Stage: test
Stage: deploy
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
docker/Dockerfile_ubuntu_18.04
+38
-0
38 additions, 0 deletions
docker/Dockerfile_ubuntu_18.04
with
38 additions
and
0 deletions
docker/Dockerfile_ubuntu_18.04
0 → 100644
+
38
−
0
View file @
c16af906
FROM ubuntu:18.04
MAINTAINER Dominique Benielli
WORKDIR /
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && \
apt-get upgrade -y && \
apt-get install -y --no-install-recommends apt-utils \
cmake \
gcc \
g++ \
make \
python3-dev \
python3-setuptools \
python3-pytest \
python3-pytest-cov \
python3-nose \
python3-pip \
python3-numpydoc \
python3-matplotlib \
python3-pil \
libhdf5-dev \
python3-tk \
git \
pandoc \
&& \
apt-get clean
RUN apt-get install -y --no-install-recommends locales && \
apt-get clean && \
locale-gen en_US.UTF-8 && \
update-locale en_US.UTF-8 && \
echo "export LC_ALL=$(locale -a | grep en_US)" >> /root/.bashrc && \
echo "export LANG=$(locale -a | grep en_US)" >> /root/.bashrc
COPY requirements.txt .
RUN pip3 install -r requirements.txt
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment