Tom/Dockerfile
Mylloon aafde87ee2
All checks were successful
ci/woodpecker/manual/publish Pipeline was successful
migration
* gitlab -> forgejo
* python 3.9 -> 3.11
* readme overhal
* format python file
* basic PIP convention
2024-01-24 18:04:10 +01:00

12 lines
204 B
Docker

FROM python:3.11.6-alpine3.18
RUN apk add dumb-init
COPY requirements.txt .
RUN pip install -r requirements.txt
WORKDIR /app
COPY src .
COPY LICENSE .
CMD [ "dumb-init", "python", "-u", "./main.py" ]