mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-06-17 13:52:56 -04:00
15 lines
243 B
Docker
15 lines
243 B
Docker
FROM lsiobase/alpine:3.11 as buildstage
|
|
|
|
# copy local files
|
|
COPY root/ /root-layer/
|
|
|
|
# runtime stage
|
|
FROM scratch
|
|
|
|
LABEL maintainer="alexschomb"
|
|
|
|
# Add files from buildstage
|
|
COPY --from=buildstage /root-layer/ /
|
|
|
|
# volumes
|
|
VOLUME /translations |