mirror of
https://github.com/linuxserver/docker-mods.git
synced 2026-02-04 20:49:31 +08: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 |