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

Commit

Permalink
Merge pull request #5 from iterative/iesahin-issue2
Browse files Browse the repository at this point in the history
Added ENV declarations to base containers for LANG and LC_ALL

Closes #2
  • Loading branch information
iesahin authored Apr 9, 2021
2 parents c0c8b4a + 6dfe015 commit 057d7f6
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 057d7f6

Please sign in to comment.