# production stage
FROM alpine:3.11
-COPY --from=build-stage /app/dist /www/
-
ENV USER darkhttpd
ENV GROUP darkhttpd
ENV GID 911
USER ${USER}
+COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/
+
ENTRYPOINT ["darkhttpd","/www/", "--no-listing"]
\ No newline at end of file
FROM arm32v7/alpine:3.11
COPY --from=qemu qemu-arm-static /usr/bin/
-COPY --from=build-stage /app/dist /www/
ENV USER darkhttpd
ENV GROUP darkhttpd
USER ${USER}
+COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/
+
ENTRYPOINT ["darkhttpd","/www/","--no-listing"]
FROM arm64v8/alpine:3.11
COPY --from=qemu qemu-aarch64-static /usr/bin/
-COPY --from=build-stage /app/dist /www/
ENV USER darkhttpd
ENV GROUP darkhttpd
USER ${USER}
+COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/
+
ENTRYPOINT ["darkhttpd","/www/","--no-listing"]