File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# syntax=docker/dockerfile:1@sha256:2780b5c3bab67f1f76c781860de469442999ed1a0d7992a5efdf2cffc0e3d769
22#
33# Build stage
4- FROM ghcr.io/astral-sh/uv:python3.14-alpine@sha256:9e24cef9880ce029f2a14a914dc2d03c640c2b71de5cf11167516b36980e16fd AS build
4+ FROM ghcr.io/astral-sh/uv:python3.14-alpine@sha256:f9df60c48daec8db37117ef21dd0704faa62627e1bfa6c2d25eb369ad3f3090f AS build
55WORKDIR /app
66COPY pyproject.toml LICENSE.txt README.rst supa.env .
77COPY src src
88RUN uv build --no-cache --wheel --out-dir dist
99
1010# Final stage
11- FROM ghcr.io/astral-sh/uv:python3.14-alpine@sha256:9e24cef9880ce029f2a14a914dc2d03c640c2b71de5cf11167516b36980e16fd
11+ FROM ghcr.io/astral-sh/uv:python3.14-alpine@sha256:f9df60c48daec8db37117ef21dd0704faa62627e1bfa6c2d25eb369ad3f3090f
1212ENV DATABASE_DIR=/usr/local/var/db
1313COPY --from=build /app/dist/*.whl /tmp/
1414RUN uv pip install --system --no-cache /tmp/*.whl && rm /tmp/*.whl
You can’t perform that action at this time.
0 commit comments