fix: Workaround for set locale warning

This commit is contained in:
Danny Bessems 2023-07-14 15:25:00 +02:00
parent 6270499efe
commit 0af8f2ac5e
1 changed files with 4 additions and 1 deletions

View File

@ -18,7 +18,10 @@ ENV LC_ALL en_US.UTF-8
RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-recommends \
curl \
jq && \
jq \
locales && \
sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && \
locale-gen &&
npm install -g --omit=optional --omit=dev \
json-server && \
npm cache clean --force && \