12 lines
343 B
Docker
12 lines
343 B
Docker
# Build: podman build -t code.philo.ydns.eu/philorg/test-woodpecker -f Containerfile
|
|
|
|
FROM docker.io/python:alpine
|
|
|
|
COPY . /app
|
|
|
|
# Sync the project into a new environment, using the frozen lockfile
|
|
WORKDIR /app
|
|
|
|
RUN --mount=from=ghcr.io/astral-sh/uv:alpine,source=/usr/local/bin/uv,target=/bin/uv uv pip install --system .
|
|
|
|
ENTRYPOINT ["foo"]
|