Files
mail/Dockerfile
Michael Czechowski c238d77562
Some checks failed
Build and publish / build (push) Failing after 19s
feat: extract mail from mp/mail — initial libreshop/mail
Source moved verbatim from mp/mail/ on 2026-04-29; mp was the first
concrete adapter consuming the libreshop toolkit. Builds and publishes
git.librete.ch/libreshop/mail on every main / v* push via the standard
.gitea/workflows/build.yml shared across libreshop components.
2026-04-29 17:48:32 +02:00

17 lines
293 B
Docker

FROM python:3.13.1-alpine3.20
WORKDIR /app
COPY ./requirements.txt requirements.txt
RUN pip install -r requirements.txt
COPY ./src /app/src
COPY ./docker-entrypoint.sh /app/docker-entrypoint.sh
RUN chmod +x /app/docker-entrypoint.sh
ENTRYPOINT ["/app/docker-entrypoint.sh"]
EXPOSE 2222