-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathDockerfile
57 lines (45 loc) · 1.35 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
# This Dockerfile uses Docker Multi-Stage Builds
# See https://docs.docker.com/engine/userguide/eng-image/multistage-build/
### Base Image
# Setup up a base image to use in build and runtime images
FROM openmined/pysyft:hydrogen AS base
EXPOSE 8888
CMD ["jupyter", "notebook", "--config=./jupyter_notebook_config.py", "--allow-root"]
# Intermediate build container
FROM base AS build
WORKDIR /pysonar
# Install build OS packages
RUN apk add --no-cache \
python3 \
python3-dev \
alpine-sdk \
nodejs \
nodejs-npm \
git \
linux-headers \
lapack-dev \
gfortran \
gmp-dev \
gmp-dev \
mpfr-dev \
mpc1-dev
#Pysonar image
FROM build AS pysonar
# Setup workdir and copy requirements file
COPY requirements.txt /pysonar
# Install python packages
RUN ["pip3", "install", "numpy", "scipy"]
RUN ["pip3", "install", "-r", "/pysonar/requirements.txt"]
# install pySonar lib
COPY . /pysonar
RUN ["python3", "setup.py", "install"]
# import abi via NPM module
RUN ["make", "import-abi"]
# Runtime image
FROM base AS runtime
WORKDIR /notebooks
RUN ["pip3", "install", "jupyter", "notebook"]
COPY notebooks /notebooks
COPY jupyter_notebook_config.py /notebooks/
# Copy artifacts from pysonar image
COPY --from=pysonar /pysonar/ /pysonar/