This repository has been archived by the owner on Mar 6, 2024. It is now read-only.
forked from vivarium-collective/biosimulator-processes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
66 lines (56 loc) · 1.69 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# TODO: Use a more specific tag instead of latest for reproducibility
FROM ubuntu:latest
ENV DEBIAN_FRONTEND=noninteractive
# XVFB_RES="1920x1080x24" \
# XVFB_ARGS="" \
# PATH="/app/.venv/bin:$PATH" \
# CONFIG_ENV_FILE="/app/config/config.env" \
# SECRET_ENV_FILE="/app/secret/secret.env" \
# STORAGE_GCS_CREDENTIALS_FILE="/app/secret/gcs_credentials.json" \
# STORAGE_LOCAL_CACHE_DIR="/app/scratch"
WORKDIR /app
# copy and make dirs
COPY ./biosimulator_processes /app/biosimulator_processes
COPY notebooks /app/notebooks
# copy files
COPY pyproject.toml poetry.lock ./data ./scripts/trust-notebooks.sh /app/
# COPY ./scripts/xvfb-startup.sh /xvfb-startup.sh
VOLUME /app/data
RUN apt-get update && apt-get install -y --no-install-recommends \
python3.10 \
ca-certificates \
python3-pip \
python3-dev \
build-essential \
libncurses5 \
cmake \
make \
libx11-dev \
libc6-dev \
libx11-6 \
libc6 \
gcc \
swig \
pkg-config \
curl \
tar \
libgl1-mesa-glx \
libice6 \
libpython3.10 \
wget \
&& rm -rf /var/lib/apt/lists/* \
&& pip install --upgrade pip && pip install poetry \
&& poetry config virtualenvs.in-project true \
&& poetry update \
&& poetry install \
&& chmod +x ./trust-notebooks.sh \
&& ./trust-notebooks.sh \
&& rm ./trust-notebooks.sh \
&& apt-get clean \
&& apt-get autoclean
# CMD ["poetry", "run", "jupyter", "lab", "--port=8888", "--no-browser", "--allow-root"]
# PLEASE NOTE: We do not need to add a USER in the Dockerfile as Singularity will handle
# such logic in conversion on the HPC.
# type imports
# dist
# param scan demo/location