first try of automated docker builds

This commit is contained in:
2024-05-25 13:32:53 +02:00
parent 8023c21020
commit 24a5a743b0
3 changed files with 33 additions and 3 deletions

View File

@@ -1,10 +1,10 @@
FROM python:3
WORKDIR /app
COPY Pipfile Pipfile.lock /app/
COPY Pipfile Pipfile.lock .
RUN pip install pipenv
RUN pipenv install --deploy --ignore-pipfile
RUN pipenv install --deploy --system
COPY . /src