-
Notifications
You must be signed in to change notification settings - Fork 9
/
Dockerfile
68 lines (60 loc) · 2.55 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
67
FROM itisfoundation/cnap-dy-jupyter:latest AS common
LABEL maintainer=odeimaiz
USER root
# install git
RUN apt-get update && \
apt-get install -y --no-install-recommends \
git
USER $NB_USER
# install requirements --------------------------------------------------------
COPY --chown=jovyan:users src/requirements.txt .
# TODO: tmp workaround for https://github.com/pypa/pip/issues/6197
ENV VIRTUAL_VENV=/home/jovyan/.venv
RUN python -m venv ${VIRTUAL_VENV} &&\
${VIRTUAL_VENV}/bin/pip --no-cache-dir install --upgrade pip~=21.2.3 wheel setuptools && \
${VIRTUAL_VENV}/bin/pip --no-cache-dir install -r requirements.txt
# prepare for booting ---------------------------------------------------------
COPY --chown=jovyan:users docker /docker
# set of arguments to copy the right app ---------------------------------
ARG APP_NAME
ENV APP_URL=${APP_NAME}
EXPOSE 8888
# ----------------------------------------------------------------
# set up oSparc env variables
ENV SIMCORE_NODE_UUID="-1" \
SIMCORE_USER_ID="-1" \
SIMCORE_NODE_BASEPATH="" \
SIMCORE_NODE_APP_STATE_PATH="/home/jovyan/notebooks" \
STORAGE_ENDPOINT="=1" \
S3_ENDPOINT="=1" \
S3_ACCESS_KEY="-1" \
S3_SECRET_KEY="-1" \
S3_BUCKET_NAME="-1" \
POSTGRES_ENDPOINT="-1" \
POSTGRES_USER="-1" \
POSTGRES_PASSWORD="-1" \
POSTGRES_DB="-1"
# ----------------------------------------------------------------
COPY --chown=jovyan:users /docker/scripts/healthcheck_curl_host.py /healthcheck/healthcheck_curl_host.py
# will start to run after interval every interval. fails after timeout. fail do not count if during start-period. will do # retries
HEALTHCHECK --interval=10s --timeout=30s --start-period=1s --retries=3 CMD [ "python3", "/healthcheck/healthcheck_curl_host.py", "http://localhost:8888" ]
# -----------------------------------------------------------------------------
FROM common AS production
ENV SC_BUILD_TARGET=production
RUN mkdir -p /home/jovyan/output
# set of arguments to copy the right app
ARG APP_NAME
# copy the app in the image
WORKDIR /home/jovyan/src
# COPY --chown=jovyan:users src/mattward-dash/${APP_NAME} ${APP_NAME}
COPY --chown=jovyan:users src/mattward-dash .
ENTRYPOINT [ "/bin/bash", "/docker/boot.bash" ]
# -----------------------------------------------------------------------------
FROM common AS development
ENV SC_BUILD_TARGET=development
ENV USE_CASE_CONFIG_FILE="node_configuration_file.json"
ENV INIT_OPTIONS="100 6000 20 space"
ENV CREATE_DUMMY_TABLE=1
# switch off the default entrypoint
ENTRYPOINT []
CMD [ "/bin/bash", "/docker/boot.bash" ]