From d10b219db596bb215db502b42e19443b8924fd56 Mon Sep 17 00:00:00 2001 From: Calvin Bui <3604363+calvinbui@users.noreply.github.com> Date: Thu, 11 Jun 2020 11:32:24 +1000 Subject: copy artifacts later in the build step with permissions --- Dockerfile.arm64v8 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Dockerfile.arm64v8') diff --git a/Dockerfile.arm64v8 b/Dockerfile.arm64v8 index c007d04..2f26d09 100644 --- a/Dockerfile.arm64v8 +++ b/Dockerfile.arm64v8 @@ -20,7 +20,6 @@ RUN wget https://github.com/multiarch/qemu-user-static/releases/download/${QEMU_ 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 @@ -33,4 +32,6 @@ RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} & USER ${USER} +COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/ + ENTRYPOINT ["darkhttpd","/www/","--no-listing"] -- cgit v1.2.3