seattlecitylight-mastodon-bot/Dockerfile

38 lines
1.3 KiB
Text
Raw Permalink Normal View History

2025-07-05 21:03:14 -07:00
# An example using multi-stage image builds to create a final image without uv.
# First, build the application in the `/app` directory.
# See `Dockerfile` for details.
2025-07-05 21:05:09 -07:00
FROM ghcr.io/astral-sh/uv:python3.13-bookworm-slim AS builder
2025-07-05 21:03:14 -07:00
ENV UV_COMPILE_BYTECODE=1 UV_LINK_MODE=copy
# Disable Python downloads, because we want to use the system interpreter
# across both images. If using a managed Python version, it needs to be
# copied from the build image into the final image; see `standalone.Dockerfile`
# for an example.
ENV UV_PYTHON_DOWNLOADS=0
WORKDIR /app
RUN --mount=type=cache,target=/root/.cache/uv \
--mount=type=bind,source=uv.lock,target=uv.lock \
--mount=type=bind,source=pyproject.toml,target=pyproject.toml \
uv sync --locked --no-install-project --no-dev
COPY . /app
RUN --mount=type=cache,target=/root/.cache/uv \
uv sync --locked --no-dev
# Then, use a final image without uv
2025-07-05 21:05:09 -07:00
FROM python:3.13-slim-bookworm
2025-07-05 21:03:14 -07:00
# It is important to use the image that matches the builder, as the path to the
# Python executable must be the same, e.g., using `python:3.11-slim-bookworm`
# will fail.
# Copy the application from the builder
COPY --from=builder --chown=app:app /app /app
# Place executables in the environment at the front of the path
ENV PATH="/app/.venv/bin:$PATH"
2025-07-05 21:39:27 -07:00
WORKDIR /app
2025-07-05 21:03:14 -07:00
CMD ["python", "scl.py"]