Skip to content
Open
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
2 changes: 1 addition & 1 deletion 3/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM alpine:3.16
FROM alpine:3.21.3

#
# Timezone
#

ENV TZ Pacific/Tahiti

Check warning on line 7 in 3/Dockerfile

View workflow job for this annotation

GitHub Actions / build (3)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
RUN apk add --no-cache ca-certificates curl tzdata wget \
&& ln -snf /usr/share/zoneinfo/$TZ /etc/localtime \
&& echo "$TZ" > /etc/timezone
Expand All @@ -13,14 +13,14 @@
# Locale
#

ENV LANG fr_FR:UTF-8

Check warning on line 16 in 3/Dockerfile

View workflow job for this annotation

GitHub Actions / build (3)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV LANGUAGE fr

Check warning on line 17 in 3/Dockerfile

View workflow job for this annotation

GitHub Actions / build (3)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV LC_CTYPE fr_FR.utf8

Check warning on line 18 in 3/Dockerfile

View workflow job for this annotation

GitHub Actions / build (3)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV LC_MESSAGES fr_FR.utf8

Check warning on line 19 in 3/Dockerfile

View workflow job for this annotation

GitHub Actions / build (3)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV LC_ALL fr_FR.utf8

Check warning on line 20 in 3/Dockerfile

View workflow job for this annotation

GitHub Actions / build (3)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

ENV MUSL_LOCALE_DEPS cmake make musl-dev gcc gettext-dev libintl

Check warning on line 22 in 3/Dockerfile

View workflow job for this annotation

GitHub Actions / build (3)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV MUSL_LOCPATH /usr/share/i18n/locales/musl

Check warning on line 23 in 3/Dockerfile

View workflow job for this annotation

GitHub Actions / build (3)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
RUN apk add --no-cache $MUSL_LOCALE_DEPS \
&& wget https://github.com/govpf/musl-locales/archive/master.zip \
&& unzip master.zip \
Expand Down