Skip to content
Snippets Groups Projects
Commit 5a2e776a authored by Corné Lukken's avatar Corné Lukken
Browse files

Fix moving all python files to docker image context

parent 9173ddeb
No related branches found
No related tags found
1 merge request!17Fix moving all python files to docker image context
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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment