rollout v1

This commit is contained in:
Waylon Walker 2024-03-12 20:07:15 -05:00
parent eebe310060
commit bebfe9013d
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4
4 changed files with 158 additions and 1 deletions

8
hello-world/Dockerfile Normal file
View file

@ -0,0 +1,8 @@
From python:3.11
RUN pip install flask
WORKDIR /app
COPY hello-world/app.py .
ENV FLASK_APP=app.py
ENV FLASK_RUN_HOST=0.0.0.0
CMD ["flask", "run"]