ci: Add docker and registry integration

This commit is contained in:
2024-07-21 22:07:01 +03:00
parent 349e4d43be
commit 10295e2f21
3 changed files with 56 additions and 1 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM docker.io/python:3.12-slim as builder
WORKDIR /app
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY *.py /app
ENTRYPOINT ["python3", "main.py"]