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 3802b34 commit 492702bCopy full SHA for 492702b
Dockerfile
@@ -23,7 +23,7 @@ FROM mcr.microsoft.com/dotnet/runtime:9.0-alpine AS final
23
24
# Add non-root user
25
RUN set -eux && \
26
-apk add --no-cache su-exec && \
+apk add --no-cache su-exec icu-libs icu-data-full && \
27
su-exec nobody true && \
28
addgroup -g 1001 refresh && \
29
adduser -D -h /refresh -u 1001 -G refresh refresh && \
@@ -33,6 +33,4 @@ COPY --from=build /build/publish/publish /refresh/app
33
34
RUN chown -R refresh:refresh /refresh
35
36
-ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1
37
-
38
ENTRYPOINT ["su-exec", "refresh:refresh", "/refresh/app/RefreshDiscordBot"]
0 commit comments