From 29d6b359abd243e9b4c026020bfc5d82bee88b12 Mon Sep 17 00:00:00 2001 From: Glenn Toms Date: Thu, 18 Jun 2020 15:46:33 +0100 Subject: Added entrypoint script and Dockerfile port&volume --- Dockerfile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile index 73519e0..cd3ab11 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,12 +21,10 @@ ENV PORT 8080 RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} && \ apk add -U darkhttpd -RUN echo "darkhttpd /www/ --no-listing --port $PORT" > /entrypoint.sh -RUN set -ex chown ${USER}:${GROUP} /entrypoint.sh - -USER ${USER} - COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/ +COPY --chown=${USER}:${GROUP} entrypoint.sh /entrypoint.sh +USER ${USER} EXPOSE ${PORT} +VOLUME [ "/www/config.yml", "/www/assets" ] ENTRYPOINT ["/bin/sh", "/entrypoint.sh"] -- cgit v1.2.3