initial re-commit to wipe commit histoy due to public repo

This commit is contained in:
2024-07-06 21:10:44 +00:00
commit a20ba3505a
17 changed files with 465 additions and 0 deletions

23
backend/Dockerfile Executable file
View File

@ -0,0 +1,23 @@
# syntax=docker/dockerfile:1.4
FROM python:3-alpine AS builder
WORKDIR /code
COPY requirements.txt /code
RUN target=/root/.cache/pip \
pip3 install -r requirements.txt
COPY . .
ENV FLASK_APP app.py
# This might be scary to leave on
#ENV FLASK_ENV development
ENV FLASK_RUN_PORT 8000
ENV FLASK_RUN_HOST 0.0.0.0
RUN flask --version
EXPOSE 8000
CMD ["flask", "run"]