Adding two placeholder containers

This commit is contained in:
2020-04-15 09:15:40 +02:00
parent df4124b6cc
commit 9299419941
6 changed files with 182 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
FROM python:3
ENV PYTHONUNBUFFERED=1
ENV PYTHONDONTWRITEBYTECODE=1
ENV PORT 8080
WORKDIR /app
COPY . /app
ENTRYPOINT ["python", "app.py"]