From 5a2e776ae3b1cbb08129233a6941bb7e03c2e128 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Corn=C3=A9=20Lukken?= <lukken@astron.nl> Date: Tue, 16 Nov 2021 11:44:19 +0000 Subject: [PATCH] Fix moving all python files to docker image context --- Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 653ea5b..2cba9c0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,9 @@ FROM ubuntu:20.04 -COPY requirements.txt /requirements.txt +# Just copy everything +COPY . /pypcc RUN apt-get update && apt-get install -y python3 python3-pip python3-yaml git && \ - pip3 install -r requirements.txt + pip3 install -r /pypcc/requirements.txt -WORKDIR ./ +WORKDIR /pypcc -- GitLab