Skip to content

Commit

Permalink
Dockerfile: Fix incorrect ENV usage
Browse files Browse the repository at this point in the history
This commit fixes incorrect ENV command usages in the Dockerfile.

Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
  • Loading branch information
stephanosio committed Apr 24, 2022
1 parent 3ad4deb commit 2cae429
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 @@ -4,7 +4,7 @@ ARG UID=1001
ARG GID=1001

# Make bash the default shell
ENV SHELL /bin/bash
ENV SHELL=/bin/bash

# Install packages
RUN apt-get clean
Expand All @@ -19,9 +19,9 @@ RUN apt-get install -y --no-install-recommends \

# Set the locale
RUN locale-gen en_US.UTF-8
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

# The package sets are based on Yocto & crosstool-ng docs/references:
#
Expand Down

0 comments on commit 2cae429

Please sign in to comment.