This commit is contained in:
filimonov
2024-02-01 23:12:59 +07:00
parent 9518a916a6
commit 285e2913f1
9 changed files with 108 additions and 212 deletions

View File

@@ -5,7 +5,7 @@ RUN apk update && apk upgrade && apk add python3 && apk add -U tzdata
WORKDIR /app
COPY requirements.txt requirements.txt
ADD *.py /app
ADD app.py /app
RUN python3 -m venv .venv
RUN /app/.venv/bin/pip3 install -r /app/requirements.txt