We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4a1fe0 commit c2f3048Copy full SHA for c2f3048
1 file changed
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM python:3.12-slim-bookworm
+FROM ghcr.io/astral-sh/uv:python3.12-bookworm-slim
2
3
WORKDIR /app
4
RUN useradd --create-home appuser
@@ -21,10 +21,9 @@ RUN tar -xf /tmp/multirun-x86_64-linux-gnu-${MULTIRUN_VERSION}.tar.gz \
21
22
RUN chown appuser:appuser /app
23
24
-ENV POETRY_VIRTUALENVS_CREATE=0
25
-RUN pip install --upgrade poetry
26
-
+ENV PATH="/app/.venv/bin:$PATH"
27
ENV WEB_CONCURRENCY=4
+USER appuser
28
29
COPY base /base
30
CMD ["/base/start.sh"]
0 commit comments