docker to .docker

This commit is contained in:
Jonathan Taylor
2023-08-21 17:41:26 -07:00
parent 58b6936b0e
commit 7c19e32f0a
3 changed files with 2 additions and 2 deletions

11
.docker/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM docker.io/jupyter/base-notebook:lab-4.0.5
COPY requirements.txt .
# Install Python deps, the user approach is documented here:
# https://pythonspeed.com/articles/multi-stage-docker-python/
RUN pip install --user --no-cache-dir -r requirements.txt
COPY --chown=jovyan:users . ${HOME}/work