Skip to content
This repository has been archived by the owner on Dec 8, 2022. It is now read-only.

Commit

Permalink
Added ENV declarations to base containers for LANG and LC_ALL
Browse files Browse the repository at this point in the history
  • Loading branch information
iesahin committed Apr 9, 2021
1 parent c0c8b4a commit 6dfe015
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions katacoda/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ FROM ubuntu:20.04

WORKDIR /root

ENV LANG C.UTF-8
ENV LC_ALL C.UTF-8

ARG RELEASE_HASH
RUN RELEASE_HASH=${RELEASE_HASH} \
apt-get update -y && apt-get install -y \
Expand Down
4 changes: 4 additions & 0 deletions start/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
FROM ubuntu:20.04

WORKDIR /root

ENV LANG C.UTF-8
ENV LC_ALL C.UTF-8

ARG RELEASE_HASH
RUN RELEASE_HASH=${RELEASE_HASH} \
apt-get update -y && apt-get install -y \
Expand Down

0 comments on commit 6dfe015

Please sign in to comment.