docker; byte compile things

This commit is contained in:
Christoph Reiter
2025-10-21 07:27:14 +02:00
parent 4771731f2a
commit 3e1dc9cbc8

View File

@@ -9,7 +9,7 @@ RUN python -m pip install "uv==0.9.3"
COPY . /app
WORKDIR /app
RUN uv sync --locked --no-dev
RUN uv sync --locked --no-dev --compile-bytecode
ENTRYPOINT ["uv", "run", "gunicorn", "-k", "uvicorn_worker.UvicornWorker", "--access-logfile", "-", "--bind", "0.0.0.0:80", "--timeout", "60", "app:app"]