Skip to content

Commit

Permalink
docker build error fix attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
woensug-choi committed Jun 5, 2024
1 parent ed0250c commit 300efb3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .docker/jazzy.amd64.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ RUN truncate -s0 /tmp/preseed.cfg && \
debconf-set-selections /tmp/preseed.cfg && \
rm -f /etc/timezone && \
dpkg-reconfigure -f noninteractive tzdata
# hadolint ignore=DL3008
RUN apt-get -y install --no-install-recommends locales tzdata \
# hadolint ignore=DL3008,DL3015
RUN apt-get -y install locales tzdata \
&& rm -rf /tmp/*
RUN locale-gen en_US en_US.UTF-8 && update-locale LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 && \
export LANG=en_US.UTF-8
Expand Down
4 changes: 2 additions & 2 deletions .docker/jazzy.arm64v8.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ RUN truncate -s0 /tmp/preseed.cfg && \
debconf-set-selections /tmp/preseed.cfg && \
rm -f /etc/timezone && \
dpkg-reconfigure -f noninteractive tzdata
# hadolint ignore=DL3008
RUN apt-get -y install --no-install-recommends locales tzdata \
# hadolint ignore=DL3008,DL3015
RUN apt-get -y install locales tzdata \
&& rm -rf /tmp/*
RUN locale-gen en_US en_US.UTF-8 && update-locale LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 && \
export LANG=en_US.UTF-8
Expand Down

0 comments on commit 300efb3

Please sign in to comment.