Use workflow version from lab

This commit is contained in:
ted-cdw 2023-02-23 14:40:37 -05:00
parent 87dde6a5de
commit 31fed72a2b

View file

@ -0,0 +1,12 @@
FROM python:3.11.2-alpine3.17
COPY . "/tutorial"
WORKDIR /tutorial
RUN pip install .
RUN flask --app=flaskr init-db
RUN touch blah
EXPOSE 5000
CMD [ "flask", "--app=flaskr", "run", "--host=0.0.0.0"]