mirror of
https://github.com/bcye/structured-wikivoyage-exports.git
synced 2025-10-30 14:42:44 +00:00
13 lines
180 B
Docker
13 lines
180 B
Docker
FROM ghcr.io/astral-sh/uv:0.6-python3.12-bookworm
|
|
|
|
WORKDIR /app
|
|
|
|
COPY pyproject.toml uv.lock ./
|
|
RUN uv sync --frozen
|
|
|
|
COPY . .
|
|
|
|
RUN chmod +x entrypoint.sh
|
|
|
|
CMD ["./entrypoint.sh"]
|