Skip to content

Commit

Permalink
Fix ENV format warnings in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
ThisIsMissEm committed Jul 27, 2024
1 parent 05e3be1 commit fbbdc9d
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 @@ -10,11 +10,11 @@ RUN apk add --no-cache \
sqlite-dev \
tzdata

ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
ENV LANG=en_US.UTF-8
ENV LANGUAGE=en_US:en
ENV LC_ALL=en_US.UTF-8

ENV BUNDLER_VERSION 2.5.11
ENV BUNDLER_VERSION=2.5.11
RUN gem install bundler -v ${BUNDLER_VERSION} -i /usr/local/lib/ruby/gems/$(ls /usr/local/lib/ruby/gems) --force

WORKDIR /srv
Expand Down

0 comments on commit fbbdc9d

Please sign in to comment.