skip to Main Content

Python script not executed with docker compose

I have got the following Docker file FROM jupyter/scipy-notebook COPY . ./work RUN pip install -r ./work/requirements.txt WORKDIR /work CMD ["python", "./work/append_dependencies.py"] and the following docker-compose.yml version: '3.7' networks: george: services: jupyter: build: . image: jupyter/datascience-notebook:r-4.0.3 environment: - JUPYTER_TOKEN=password -…

VIEW QUESTION

Startup Docker image in WSL

I used Docker in WSL2 to pull the image jupyter/scipy-notebook and run it with no problem. Then I exported the image and re-imported it into WSL2 so I can run it directly from WSL. The issue is that, when I…

VIEW QUESTION
Back To Top
Search