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
Back To Top
Search