gacsco/Containerfile

15 lines
359 B
Text
Raw Normal View History

2025-05-05 10:23:18 +02:00
# Build: podman build -t code.philo.ydns.eu/philorg/tinyseady-mailer -f Containerfile
FROM docker.io/python:3.13-alpine
RUN apk add --no-cache git
COPY --from=ghcr.io/astral-sh/uv:latest /uv /usr/local/bin/
COPY . /app
# Sync the project into a new environment, using the frozen lockfile
WORKDIR /app
RUN uv pip install --system .
ENTRYPOINT ["gacsco"]