Added su-exec to ARM dockerfiles and removed USER line

This commit is contained in:
AgileVirus
2020-07-09 18:47:33 +01:00
parent 4bfcc5bc95
commit fd9237eb52
4 changed files with 7 additions and 9 deletions

View File

@@ -28,14 +28,13 @@ ENV UID 911
ENV PORT 8080
RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} && \
apk add -U darkhttpd && \
apk add -U darkhttpd su-exec && \
rm /usr/bin/qemu-arm-static
COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/
COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist/assets /www/default-assets
COPY --chown=${USER}:${GROUP} entrypoint.sh /entrypoint.sh
COPY entrypoint.sh /entrypoint.sh
USER ${USER}
EXPOSE ${PORT}
VOLUME /www/assets
ENTRYPOINT ["/bin/sh", "/entrypoint.sh"]