Compare commits

...

2 Commits

Author SHA1 Message Date
5c1a8a3a5e Merge pull request 'fix' (#6) from master into dev
Reviewed-on: #6
2025-06-01 01:07:52 +03:00
Egor Matveev
317b371977 fix
Some checks failed
Deploy Dev / Build (pull_request) Failing after 27s
Deploy Dev / Push (pull_request) Has been skipped
Deploy Dev / Deploy dev (pull_request) Has been skipped
2025-06-01 01:07:20 +03:00

View File

@@ -2,14 +2,14 @@ FROM docker:dind
ENV PYTHONUNBUFFERED=1
RUN apk add --update --no-cache python3 py3-pip && ln -sf python3 /usr/bin/python
RUN mkdir /code
WORKDIR /code
RUN python3 -m venv venv
RUN venv/bin/python3 -m ensurepip
RUN venv/bin/pip3 install --no-cache --upgrade pip setuptools
RUN mkdir /code
WORKDIR /code
COPY requirements.txt requirements.txt
RUN ls venv/bin
RUN venv/bin/pip3 install requirements.txt
COPY . .
ENTRYPOINT [ "venv/bin/python3", "main.py" ]