Skip to content

Commit

Permalink
fix(ci): set default locales
Browse files Browse the repository at this point in the history
  • Loading branch information
ddfreiling committed Sep 5, 2024
1 parent dc662e4 commit 652e02e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions ci/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,13 @@ FROM debian:bookworm-slim AS runtime-lcp
LABEL org.opencontainers.image.source https://github.com/notalib/readium-lcp-server
WORKDIR /app

RUN apt update && apt install tzdata -y && apt clean

# To avoid .NET Culture issues, define Danish locale.
ENV TZ="Europe/Copenhagen"
ENV LANG="en_DK.UTF-8"
ENV LC_ALL="en_DK.UTF-8"

# Add non-root user
ARG UID=1001
ARG GID=1001
Expand Down

0 comments on commit 652e02e

Please sign in to comment.