docker works

This commit is contained in:
venus
2026-03-04 16:22:41 -06:00
parent 22ecd5eff5
commit f698b077db

View File

@@ -1,21 +1,15 @@
FROM python:3.10-slim AS builder
FROM python:3.14-slim
ARG DEBUG_MODE=0
ENV FLASK_DEBUG=$DEBUG_MODE
ENV FLASK_APP=app
RUN mkdir /app
COPY app/requirements.txt /app
RUN pip3 install -r /app/requirements.txt
COPY app /app
COPY requirements.txt
RUN pip3 install -r requirements.txt
COPY . .
EXPOSE 443
ENTRYPOINT ["flask"]
# CMD [ "run", "--host=0.0.0.0", "--port=80"]
CMD ["--app", "app", "run", "--host=0.0.0.0", "--port=443"]
CMD ["--app", "app", "run", "--host=0.0.0.0", "--port=80"]