Skip to content
This repository has been archived by the owner on Aug 5, 2024. It is now read-only.

Commit

Permalink
Fix ENV args
Browse files Browse the repository at this point in the history
  • Loading branch information
itsthejb committed Jul 1, 2024
1 parent 2445661 commit 5a1e6c5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ ENV POSTGREY_TEXT="Delayed by postgrey"
# --- prep
SHELL ["/bin/bash", "-Eeuo", "pipefail", "-c"]
# --- set timezone and locale
ENV LANG "${BUILD_LOCALE}.UTF-8"
ENV LANGUAGE "${BUILD_LOCALE}:en"
ENV LC_ALL "${BUILD_LOCALE}.UTF-8"
ENV LANG="${BUILD_LOCALE}.UTF-8"
ENV LANGUAGE="${BUILD_LOCALE}:en"
ENV LC_ALL="${BUILD_LOCALE}.UTF-8"
# hadolint ignore=SC1091
RUN . /etc/os-release && \
touch /etc/apt/sources.list && \
Expand Down Expand Up @@ -345,7 +345,7 @@ RUN cp -v /etc/passwd /etc/passwd.bootstrap && \
mkdir -p /var/vmail && \
tar -C /var/vmail -czf /bootstrap/vmail.tgz . && \
tar -C /var/www -czf /bootstrap/www.tgz .
ENV TERM xterm
ENV TERM=xterm

RUN printf "export TERM=xterm\n" >> /root/.bashrc && \
#
Expand Down

0 comments on commit 5a1e6c5

Please sign in to comment.