-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile
More file actions
38 lines (34 loc) · 1.12 KB
/
Dockerfile
File metadata and controls
38 lines (34 loc) · 1.12 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
# Dockerfile for Running an OpenMP Environment
FROM ubuntu:22.04
RUN apt-get --yes -qq update \
&& apt-get --yes -qq upgrade \
&& apt-get --yes -qq install \
bzip2 \
cmake \
cpio \
curl \
g++ \
gcc \
gfortran \
git \
gosu \
libblas-dev \
liblapack-dev \
libgsl-dev \
libopenmpi-dev \
openmpi-bin \
python3-dev \
python3-pip \
virtualenv \
wget \
zlib1g-dev \
vim \
htop \
ffmpeg \
&& apt-get --yes -qq clean \
&& rm -rf /var/lib/apt/lists/*
# Make sure you copy the requirements.txt to the container
COPY requirements.txt /app/requirements.txt
# Install the Python dependencies
RUN pip3 install -r /app/requirements.txt
CMD [ "/bin/bash" ]