Added stack

This commit is contained in:
2026-02-19 12:54:08 +01:00
parent d477e17570
commit 6d3808b207
6 changed files with 329 additions and 0 deletions

5
swarm/old/Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM python:3.7-alpine
ADD . /code
WORKDIR /code
RUN pip install -r requirements.txt
CMD ["python", "app.py"]