fix #7

Merged
emmatveev merged 1 commits from master into dev 2025-06-01 01:10:42 +03:00
Showing only changes of commit 8e193e2e87 - Show all commits

View File

@ -9,7 +9,7 @@ RUN venv/bin/python3 -m ensurepip
RUN venv/bin/pip3 install --no-cache --upgrade pip setuptools
COPY requirements.txt requirements.txt
RUN venv/bin/pip3 install requirements.txt
RUN venv/bin/pip3 install -r requirements.txt
COPY . .
ENTRYPOINT [ "venv/bin/python3", "main.py" ]