File tree 2 files changed +2
-10
lines changed
2 files changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -25,24 +25,17 @@ ADD web/vue.config.js vue.config.js
25
25
26
26
RUN npm run build
27
27
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
-
34
28
FROM jupyterhub/jupyterhub:1.4.2
35
29
# Create oauthenticator directory and put necessary files in it
36
30
37
31
WORKDIR /application
38
- COPY --from=pybuilder /app/whls / application/whls
32
+ COPY requirements.txt / application/requirements.txt
39
33
COPY --from=builder /application/main /application/main
40
34
COPY --from=webbuilder /application/web/dist /application/web
41
35
42
36
RUN apt-get update -y && \
43
37
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 && \
46
39
mkdir /srv/oauthenticator && \
47
40
mkdir /srv/ipython && \
48
41
mkdir /srv/ipython/examples && \
Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ jupyterlab==3.1.6
3
3
notebook == 6.4.3
4
4
delta-task == 0.8.1
5
5
oauthenticator == 14.2.0
6
- jupyterhub == 1.4.2
7
6
8
7
-f https://download.pytorch.org/whl/lts/1.8/torch_lts.html
9
8
torch == 1.8.2+cpu
You can’t perform that action at this time.
0 commit comments