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

Added ENV declarations to base containers for LANG and LC_ALL #5

Merged
merged 1 commit into from
Apr 9, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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