dev #2

Merged
venus merged 9 commits from dev into main 2026-03-04 18:09:36 -06:00
4 changed files with 1 additions and 17 deletions
Showing only changes of commit fdbced9192 - Show all commits

View File

@@ -10,6 +10,6 @@ RUN pip3 install -r /app/requirements.txt
COPY app /app
ENTRYPOINT ["flask"]
CMD ["--app", "app", "run", "--host=0.0.0.0", "--port=80"]
CMD ["run", "--host=0.0.0.0", "--port=80"]

View File

@@ -1,15 +0,0 @@
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
ENTRYPOINT ["flask"]
CMD ["--app", "app", "run", "--host=0.0.0.0", "--port=80"]

View File

@@ -1,7 +1,6 @@
services:
app:
build:
context: app
args:
- DEBUG_MODE=1
ports: