Ramses II commited on
Commit ·
c520e0a
1
Parent(s): 916bcca
first deploy
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
FROM
|
| 2 |
# Set the working directory to /app
|
| 3 |
WORKDIR /app
|
| 4 |
|
|
@@ -8,7 +8,7 @@ COPY requirements.txt .
|
|
| 8 |
COPY public /app/public
|
| 9 |
|
| 10 |
# Install the dependencies
|
| 11 |
-
RUN apt-get update && apt-get install -y wget && pip install -r requirements.txt
|
| 12 |
# Copy the JupyterLab configuration file
|
| 13 |
COPY jupyter_config.py /etc/jupyterlab/jupyter_config.py
|
| 14 |
|
|
|
|
| 1 |
+
FROM jupyter/scipy-notebook
|
| 2 |
# Set the working directory to /app
|
| 3 |
WORKDIR /app
|
| 4 |
|
|
|
|
| 8 |
COPY public /app/public
|
| 9 |
|
| 10 |
# Install the dependencies
|
| 11 |
+
RUN apt-get update && apt-get install -y wget nginx && pip install -r requirements.txt
|
| 12 |
# Copy the JupyterLab configuration file
|
| 13 |
COPY jupyter_config.py /etc/jupyterlab/jupyter_config.py
|
| 14 |
|