-
Notifications
You must be signed in to change notification settings - Fork 3
/
Dockerfile
executable file
·26 lines (24 loc) · 1.02 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
FROM ubuntu:latest
RUN apt-get update -y && \
apt-get install -y build-essential && \
apt-get install -y zlib1g-dev libncurses5-dev && \
apt-get install -y libgdbm-dev libnss3-dev libssl-dev && \
apt-get install -y libreadline-dev libffi-dev wget && \
apt-get install -y --no-install-recommends && \
apt-get install -y python3-dev && \
apt-get install -y python3-pip && \
apt-get install -y python3-wheel && \
apt-get install -y python3-setuptools && \
apt-get install -y libblas-dev && \
apt-get install -y liblapack-dev && \
apt-get install -y liblapacke-dev && \
apt-get install -y git && \
rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*
RUN python3 --version
RUN pip3 --version
RUN python3 -m pip install --upgrade pip
RUN pip3
RUN echo "Hello from CS-ROMER base image"
LABEL org.opencontainers.image.source="https://github.com/miguelcarcamov/csromer"
LABEL org.opencontainers.image.description="Container image for CS-ROMER"
LABEL org.opencontainers.image.licenses=GPL3