Skip to content
Snippets Groups Projects
Verified Commit 5ea7e465 authored by Olivier Benz's avatar Olivier Benz
Browse files

Dev Containers: Update wording in Dockerfiles

parent fba26fd1
No related branches found
No related tags found
No related merge requests found
Pipeline #31822 passed
......@@ -71,13 +71,13 @@ RUN if [ -n "$USE_ZSH_FOR_ROOT" ]; then \
fix-chsh.sh; \
chsh -s /bin/zsh; \
fi \
## Update timezone if needed
## Update timezone if requested
&& if [ "$TZ" != "" ]; then \
apk add --no-cache tzdata; \
fi \
## Info about timezone
&& echo "TZ is set to $TZ" \
## Add/Update locale if needed
## Add/Update locale if requested
&& if [ "$LANG" != "C.UTF-8" ]; then \
if [ -n "$LANG" ]; then \
apk add --no-cache musl-locales musl-locales-lang; \
......
......@@ -69,13 +69,13 @@ RUN if [ -n "$USE_ZSH_FOR_ROOT" ]; then \
fix-chsh.sh; \
chsh -s /bin/zsh; \
fi \
## Update timezone if needed
## Update timezone if requested
&& if [ "$TZ" != "" ]; then \
apk add --no-cache tzdata; \
fi \
## Info about timezone
&& echo "TZ is set to $TZ" \
## Add/Update locale if needed
## Add/Update locale if requested
&& if [ "$LANG" != "C.UTF-8" ]; then \
if [ -n "$LANG" ]; then \
apk add --no-cache musl-locales musl-locales-lang; \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment