Files
Counter_website/Dockerfile
Angoosh Leviocki 17134a7859
Some checks failed
release-tag / release-image (push) Failing after 36s
added docker shit
2026-05-26 09:31:48 +02:00

10 lines
160 B
Docker

FROM python:3-alpine
ADD requirements.txt /
RUN pip install -r requirements.txt
ADD app.py /
RUN mkdir /db
VOLUME /db
EXPOSE 5000
CMD [ "python", "./app.py" ]