Some checks failed
Build and publish / build (push) Failing after 19s
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.
17 lines
293 B
Docker
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
|