forked from zauberzeug/nicegui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfly.dockerfile
More file actions
34 lines (20 loc) · 953 Bytes
/
fly.dockerfile
File metadata and controls
34 lines (20 loc) · 953 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
FROM python:3.12-slim
LABEL maintainer="Zauberzeug GmbH <[email protected]>"
RUN apt update && apt install -y curl procps
# Install uv
COPY --from=ghcr.io/astral-sh/uv:latest /uv /usr/local/bin/uv
WORKDIR /app
COPY pyproject.toml uv.lock* ./
RUN uv sync --no-install-project --no-dev --extra plotly --extra matplotlib --extra highcharts --group website
ADD . .
# ensure unique version to not serve cached and hence potentially wrong static files
ARG VERSION=unknown
RUN if [ "$VERSION" = "unknown" ]; then echo "Error: VERSION build argument is required. Use: fly deploy --build-arg VERSION=$(git describe --abbrev=0 --tags --match 'v*' 2>/dev/null | sed 's/^v//' || echo '0.0.0')" && exit 1; fi
ENV POETRY_DYNAMIC_VERSIONING_BYPASS=$VERSION
RUN uv pip install .
EXPOSE 8080
COPY fly-entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
ENV PYTHONUNBUFFERED=1
ENV ENABLE_ANALYTICS=true
CMD ["uv", "run", "--no-sync", "main.py"]