dev #2

Merged
pi-farm merged 82 commits from dev into main 2026-03-25 10:05:59 +00:00
Showing only changes of commit 2dd1ab2ae6 - Show all commits

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"]