Skip to content

Commit f15452a

Browse files
committedMar 15, 2023
bug fix: install dependcies in dockerfile correctly
1 parent 52ce059 commit f15452a

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed
 

‎Dockerfile

+2-9
Original file line numberDiff line numberDiff line change
@@ -25,24 +25,17 @@ ADD web/vue.config.js vue.config.js
2525

2626
RUN npm run build
2727

28-
FROM jupyterhub/jupyterhub:1.4.2 as pybuilder
29-
30-
WORKDIR /app
31-
COPY requirements.txt /app/requirements.txt
32-
RUN pip wheel -w whls -r requirements.txt
33-
3428
FROM jupyterhub/jupyterhub:1.4.2
3529
# Create oauthenticator directory and put necessary files in it
3630

3731
WORKDIR /application
38-
COPY --from=pybuilder /app/whls /application/whls
32+
COPY requirements.txt /application/requirements.txt
3933
COPY --from=builder /application/main /application/main
4034
COPY --from=webbuilder /application/web/dist /application/web
4135

4236
RUN apt-get update -y && \
4337
apt-get install -y gettext sqlite3 nginx && \
44-
pip install --no-cache-dir whls/*.whl && \
45-
rm -rf whls && \
38+
pip install --no-cache-dir -r requirements.txt && \
4639
mkdir /srv/oauthenticator && \
4740
mkdir /srv/ipython && \
4841
mkdir /srv/ipython/examples && \

‎requirements.txt

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ jupyterlab==3.1.6
33
notebook==6.4.3
44
delta-task==0.8.1
55
oauthenticator==14.2.0
6-
jupyterhub==1.4.2
76

87
-f https://download.pytorch.org/whl/lts/1.8/torch_lts.html
98
torch==1.8.2+cpu

0 commit comments

Comments
 (0)