Skip to content

Commit

Permalink
Set env variables properly
Browse files Browse the repository at this point in the history
  • Loading branch information
indykoning committed Mar 26, 2024
1 parent f57b8a0 commit fe92d69
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ LABEL node=${NODE_VERSION}

ENV TZ=UTC
ENV COMPOSER_ALLOW_SUPERUSER=1
ENV DEBIAN_FRONTEND=noninteractive
ENV LC_ALL=C.UTF-8

RUN export LC_ALL=C.UTF-8 && \
DEBIAN_FRONTEND=noninteractive && \
ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone

RUN useradd -m docker && echo "docker:docker" | chpasswd && adduser docker sudo

Expand Down

0 comments on commit fe92d69

Please sign in to comment.