Skip to content

Commit

Permalink
Merge pull request #215 from vekatze/dockerfile-syntax
Browse files Browse the repository at this point in the history
`ENV key value` => `ENV key=value`
  • Loading branch information
vekatze authored Sep 29, 2024
2 parents 4895858 + c61ea71 commit 7f34dbc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ FROM debian:12.5

WORKDIR /app/

ENV LANG C.utf8
ENV LC_ALL C.utf8
ENV LANG=C.utf8
ENV LC_ALL=C.utf8

RUN apt-get update && \
apt-get install --no-install-recommends -y \
Expand Down

0 comments on commit 7f34dbc

Please sign in to comment.