Skip to content

Commit

Permalink
Update LANG variable in Dockerfile
Browse files Browse the repository at this point in the history
- Add LANG=C.UTF-8 and LC_ALL=C.UTF-8 as default env variables
  • Loading branch information
gek20 authored and hjhsalo committed Aug 1, 2024
1 parent 72a5948 commit 8ec6aa5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions dockerize/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ RUN npm install && \
#
FROM python:3.6-slim as builder

ENV LANG=en_US.UTF-8
ENV LANG=C.UTF-8
ENV LC_ALL=C.UTF-8
ENV DB_NAME="b2share-evolution"
ENV B2SHARE_UI_PATH="/eudat/b2share/webui/app"
ENV B2SHARE_BROKER_URL="redis://redis:6379/0"
Expand Down Expand Up @@ -94,7 +95,8 @@ RUN rm -rf /eudat/b2share/webui
FROM python:3.6-slim

# Variables needed in order to run b2share
ENV LANG=en_US.UTF-8
ENV LANG=C.UTF-8
ENV LC_ALL=C.UTF-8
ENV B2SHARE_UI_PATH="/eudat/b2share/webui/app"
ENV B2SHARE_BROKER_URL="redis://redis:6379/0"
ENV B2SHARE_ACCOUNTS_SESSION_REDIS_URL="redis://redis:6379/0"
Expand Down

0 comments on commit 8ec6aa5

Please sign in to comment.