update containerfile
All checks were successful
Build, / build-image (push) Successful in 24s

This commit is contained in:
2026-02-22 15:05:10 +01:00
parent 33de4999ce
commit f181dccc1c
2 changed files with 2 additions and 2 deletions

View File

@@ -11,4 +11,4 @@ COPY * /app/
COPY requirements.txt requirements.txt COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt RUN pip3 install -r requirements.txt
CMD ["python", "/app/main.py"] CMD ["python3", "-m", "flask", "run", "--host=0.0.0.0"]

View File

@@ -51,4 +51,4 @@ def index():
if __name__ == '__main__': if __name__ == '__main__':
app.run(debug=True) app.run()