9 lines
339 B
Docker
9 lines
339 B
Docker
# Use the respective Makefile to pass the appropriate BASE_IMG and build the image correctly
|
|
ARG BASE_IMG=<jupyter>
|
|
FROM $BASE_IMG
|
|
|
|
# install - requirements.txt
|
|
COPY --chown=jovyan:users cpu-requirements.txt /tmp/requirements.txt
|
|
RUN python3 -m pip install -r /tmp/requirements.txt --quiet --no-cache-dir \
|
|
&& rm -f /tmp/requirements.txt
|