mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-14 10:53:30 +02:00
15 lines
261 B
Docker
15 lines
261 B
Docker
# syntax=docker/dockerfile-upstream:1.4.3
|
|
|
|
# idle image (to dynamically replace any disabled component)
|
|
FROM base
|
|
|
|
ARG VERSION=local
|
|
LABEL version=$VERSION
|
|
|
|
RUN echo $VERSION >/version
|
|
|
|
HEALTHCHECK CMD true
|
|
|
|
USER mailu
|
|
CMD ["/bin/bash", "-c", "sleep infinity"]
|