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