Added ENV PORT options and EXPORT PORT

This commit is contained in:
Glenn Toms 2020-06-12 17:50:07 +01:00
parent cad54a560f
commit 481ab9a01b
3 changed files with 18 additions and 3 deletions

View File

@ -16,12 +16,17 @@ ENV USER darkhttpd
ENV GROUP darkhttpd ENV GROUP darkhttpd
ENV GID 911 ENV GID 911
ENV UID 911 ENV UID 911
ENV PORT 8080
RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} && \ RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} && \
apk add -U darkhttpd apk add -U darkhttpd
RUN echo "darkhttpd /www/ --no-listing --port $PORT" > /entrypoint.sh
RUN set -ex chown ${USER}:${GROUP} /entrypoint.sh
USER ${USER} USER ${USER}
COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/ COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/
ENTRYPOINT ["darkhttpd","/www/", "--no-listing"] EXPOSE ${PORT}
ENTRYPOINT ["/bin/sh", "/entrypoint.sh"]

View File

@ -25,13 +25,18 @@ ENV USER darkhttpd
ENV GROUP darkhttpd ENV GROUP darkhttpd
ENV GID 911 ENV GID 911
ENV UID 911 ENV UID 911
ENV PORT 8080
RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} && \ RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} && \
apk add -U darkhttpd && \ apk add -U darkhttpd && \
rm /usr/bin/qemu-arm-static rm /usr/bin/qemu-arm-static
RUN echo "darkhttpd /www/ --no-listing --port $PORT" > /entrypoint.sh
RUN set -ex chown ${USER}:${GROUP} /entrypoint.sh
USER ${USER} USER ${USER}
COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/ COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/
ENTRYPOINT ["darkhttpd","/www/","--no-listing"] EXPOSE ${PORT}
ENTRYPOINT ["/bin/sh", "/entrypoint.sh"]

View File

@ -25,13 +25,18 @@ ENV USER darkhttpd
ENV GROUP darkhttpd ENV GROUP darkhttpd
ENV GID 911 ENV GID 911
ENV UID 911 ENV UID 911
ENV PORT 8080
RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} && \ RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} && \
apk add -U darkhttpd && \ apk add -U darkhttpd && \
rm /usr/bin/qemu-aarch64-static rm /usr/bin/qemu-aarch64-static
RUN echo "darkhttpd /www/ --no-listing --port $PORT" > /entrypoint.sh
RUN set -ex chown ${USER}:${GROUP} /entrypoint.sh
USER ${USER} USER ${USER}
COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/ COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/
ENTRYPOINT ["darkhttpd","/www/","--no-listing"] EXPOSE ${PORT}
ENTRYPOINT ["/bin/sh", "/entrypoint.sh"]