11 lines
291 B
Text
11 lines
291 B
Text
|
# Build: podman build -t code.philo.ydns.eu/philorg/tinyseady-mailer -f Containerfile
|
||
|
|
||
|
FROM docker.io/python:3.12-alpine
|
||
|
COPY --from=ghcr.io/astral-sh/uv:latest /uv /usr/local/bin/
|
||
|
|
||
|
COPY . /src
|
||
|
WORKDIR /src
|
||
|
RUN uv sync --frozen --no-cache && uv pip install --system .
|
||
|
|
||
|
CMD tinysteady-mailer
|