diff options
Diffstat (limited to 'Dockerfile.arm64v8')
-rw-r--r-- | Dockerfile.arm64v8 | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Dockerfile.arm64v8 b/Dockerfile.arm64v8 index 90d35f3..0175341 100644 --- a/Dockerfile.arm64v8 +++ b/Dockerfile.arm64v8 | |||
@@ -4,7 +4,7 @@ FROM node:lts-alpine as build-stage | |||
4 | WORKDIR /app | 4 | WORKDIR /app |
5 | 5 | ||
6 | COPY package*.json ./ | 6 | COPY package*.json ./ |
7 | RUN yarn install | 7 | RUN yarn install --frozen-lockfile |
8 | 8 | ||
9 | COPY . . | 9 | COPY . . |
10 | RUN yarn build | 10 | RUN yarn build |
@@ -20,7 +20,6 @@ RUN wget https://github.com/multiarch/qemu-user-static/releases/download/${QEMU_ | |||
20 | FROM arm64v8/alpine:3.11 | 20 | FROM arm64v8/alpine:3.11 |
21 | 21 | ||
22 | COPY --from=qemu qemu-aarch64-static /usr/bin/ | 22 | COPY --from=qemu qemu-aarch64-static /usr/bin/ |
23 | COPY --from=build-stage /app/dist /www/ | ||
24 | 23 | ||
25 | ENV USER darkhttpd | 24 | ENV USER darkhttpd |
26 | ENV GROUP darkhttpd | 25 | ENV GROUP darkhttpd |
@@ -31,6 +30,8 @@ RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} & | |||
31 | apk add -U darkhttpd && \ | 30 | apk add -U darkhttpd && \ |
32 | rm /usr/bin/qemu-aarch64-static | 31 | rm /usr/bin/qemu-aarch64-static |
33 | 32 | ||
34 | USER darkhttpd | 33 | USER ${USER} |
34 | |||
35 | COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/ | ||
35 | 36 | ||
36 | ENTRYPOINT ["darkhttpd","/www/","--no-listing"] | 37 | ENTRYPOINT ["darkhttpd","/www/","--no-listing"] |