mirror of
https://github.com/ThePhaseless/Byparr.git
synced 2026-09-24 14:20:08 +01:00
HOME=/tmp put the uv-managed Python at /tmp/.local/share/uv, so a tmpfs mount on /tmp (e.g. compose tmpfs: /tmp) wiped the interpreter at container start, leaving the /app/.venv/bin/python symlink dangling and startup failing with 'exec /app/.venv/bin/python failed: No such file or directory' (#389). Move HOME to /home/byparr and apply the OpenShift permission pattern (owner uid 1000, group 0, group=user) so both the default user and arbitrary-UID runtimes (docker run --user, OpenShift) can write to it. Apply the same pattern to /cache, where invisible_playwright keeps runtime browser/profile data and which arbitrary UIDs previously could not write. Fixes #389
63 lines
1.7 KiB
Docker
63 lines
1.7 KiB
Docker
# Ubuntu is required by playwright.
|
|
# Pin to 24.04 LTS: ubuntu:latest floats to 26.04, which Playwright 1.58
|
|
# cannot install firefox deps for (no libgtk-3 -> camoufox fails to launch).
|
|
FROM ubuntu:24.04 AS base
|
|
|
|
ARG GITHUB_BUILD=false
|
|
|
|
ENV GITHUB_BUILD=${GITHUB_BUILD}\
|
|
PYTHONUNBUFFERED=1 \
|
|
# prevents python creating .pyc files
|
|
PYTHONDONTWRITEBYTECODE=1 \
|
|
UV_LINK_MODE=copy \
|
|
PORT=8191 \
|
|
XDG_CACHE_HOME=/cache \
|
|
HOME=/home/byparr
|
|
|
|
RUN apt-get update &&\
|
|
apt-get install -y --no-install-recommends curl ca-certificates git tini &&\
|
|
apt-get clean &&\
|
|
rm -rf /var/lib/apt/lists/*
|
|
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
|
|
|
|
FROM base AS devcontainer
|
|
RUN apt-get update &&\
|
|
apt-get install -y --no-install-recommends git &&\
|
|
uvx playwright install-deps firefox &&\
|
|
uvx --from git+https://github.com/feder-cr/invisible_playwright.git python -m invisible_playwright fetch &&\
|
|
apt-get clean &&\
|
|
rm -rf /var/lib/apt/lists/*
|
|
ENTRYPOINT [ "sleep", "infinity" ]
|
|
|
|
FROM base AS app
|
|
WORKDIR /app
|
|
|
|
COPY pyproject.toml uv.lock ./
|
|
RUN mkdir -p /cache &&\
|
|
uv sync &&\
|
|
uv run python -m invisible_playwright fetch &&\
|
|
apt-get update &&\
|
|
uv run playwright install-deps firefox &&\
|
|
uv cache clean &&\
|
|
apt-get clean &&\
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY . .
|
|
|
|
RUN mkdir -p /home/byparr &&\
|
|
chmod -R o+rX /app &&\
|
|
chmod -R a+rwX /cache /home/byparr
|
|
|
|
FROM app AS test
|
|
RUN \
|
|
uv sync --group test &&\
|
|
uv run pytest --retries 3
|
|
|
|
FROM app
|
|
ARG VERSION
|
|
ENV VERSION=${VERSION}
|
|
USER 1000
|
|
EXPOSE $PORT
|
|
HEALTHCHECK --interval=15m --timeout=30s --start-period=5s --retries=3 CMD curl "http://127.0.0.1:${PORT}/health"
|
|
ENTRYPOINT ["tini", "--", "/app/.venv/bin/python", "main.py"]
|