updated dockerfile to remove specified host
All checks were successful
ci / docker (push) Successful in 25s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s

This commit is contained in:
Nathan Windisch 2025-03-20 07:03:51 +00:00
parent e3f2a0447e
commit b860fac5d0

View File

@ -4,4 +4,4 @@ ADD . /app
WORKDIR /app
RUN uv sync --frozen
EXPOSE 8000
CMD ["uv", "run", "fastapi", "dev", "main.py", "--host", "0.0.0.0"]
CMD ["uv", "run", "fastapi", "dev", "main.py"]