Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
dev
MAGE Multiview Artificial Generation Engine
Commits
c16af906
Commit
c16af906
authored
Apr 22, 2020
by
Baptiste Bauvin
Browse files
Modified docker file"
parent
5e87eebe
Pipeline
#4729
failed with stages
in 2 minutes and 4 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
docker/Dockerfile_ubuntu_18.04
0 → 100644
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
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment