Add docker workflow

This commit is contained in:
2024-02-16 11:41:54 +01:00
parent 15f4a7a1ef
commit e498dcefd9
3 changed files with 42 additions and 0 deletions

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
# syntax=docker/dockerfile:1
FROM python:3.10.1-slim-buster
RUN apt-get update -y
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
COPY . .
CMD ["python3", "-u", "formula10.py"]