initial
Some checks failed
Deploy Dev / Push (pull_request) Has been cancelled
Deploy Dev / Deploy dev (pull_request) Has been cancelled
Deploy Dev / Build (pull_request) Has been cancelled

This commit is contained in:
Egor Matveev
2025-05-31 00:33:56 +03:00
commit 6ff0f5fd44
12 changed files with 515 additions and 0 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM docker:dind
ENV PYTHONUNBUFFERED=1
RUN apk add --update --no-cache python3 py3-pip && ln -sf python3 /usr/bin/python
RUN python3 -m venv venv
RUN venv/bin/python3 -m ensurepip
RUN venv/bin/pip3 install --no-cache --upgrade pip setuptools
ENTRYPOINT [ "venv/bin/python3", "main.py" ]