We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51e0ac0 commit c38b73bCopy full SHA for c38b73b
Dockerfile
@@ -1,5 +1,10 @@
1
FROM node:18-bookworm-slim as builder
2
3
+ENV TIMEZONE=Europe/Paris \
4
+ LANGUAGE=fr_FR.UTF-8 \
5
+ LANG=fr_FR.UTF-8 \
6
+ DEBIAN_FRONTEND=noninteractive
7
+
8
WORKDIR /data
9
10
COPY . .
@@ -22,6 +27,21 @@ WORKDIR /data
22
27
ADD package.json .
23
28
ADD *.lock .
24
29
30
+RUN apt clean -y \
31
+ && apt update -y \
32
+ && apt upgrade -y \
33
+ && apt install -y locales \
34
+ && export LANGUAGE=${LANGUAGE} \
35
+ && export LANG=${LANG} \
36
+ && export LC_ALL=${LC_ALL} \
37
+ && locale-gen ${LANG} \
38
+ && dpkg-reconfigure --frontend ${DEBIAN_FRONTEND} locales \
39
+ && apt install --no-install-recommends -yq \
40
+ git \
41
+ jq \
42
+ nano \
43
+ openssl
44
25
45
RUN yarn install \
26
46
--prefer-offline \
47
--pure-lockfile \
0 commit comments