fix #7

Merged
emmatveev merged 1 commits from master into dev 2025-06-01 01:10:42 +03:00

View File

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