Dockerfile aktualisiert

This commit is contained in:
2026-03-24 13:43:03 +00:00
parent 2d387cd52a
commit 2dd1ab2ae6

View File

@@ -12,7 +12,6 @@ LABEL maintainer="${BUILD_MAINTAINER}"
LABEL org.opencontainers.image.title="${BUILD_APP_NAME}"
ENV TZ=${ENV_TZ}
ENV USER=${BUILD_APP_USER}
RUN apt update && \
apt install wget && \
@@ -22,8 +21,8 @@ RUN apt update && \
WORKDIR /app
RUN adduser -D ${APP_USER} && chown -R ${APP_USER}:${APP_USER} /app
RUN adduser -D ${BUILD_APP_USER} && chown -R ${BUILD_APP_USER}:${BUILD_APP_USER} /app
USER ${APP_USER}
USER ${BUILD_APP_USER}
CMD ["bash"]