diff options
-rw-r--r-- | .devops/full.Dockerfile | 2 | ||||
-rw-r--r-- | .devops/main.Dockerfile | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/.devops/full.Dockerfile b/.devops/full.Dockerfile index 01b3111..687628b 100644 --- a/.devops/full.Dockerfile +++ b/.devops/full.Dockerfile @@ -16,4 +16,6 @@ COPY . . RUN make +ENV LC_ALL=C.utf8 + ENTRYPOINT ["/app/.devops/tools.sh"] diff --git a/.devops/main.Dockerfile b/.devops/main.Dockerfile index fc34a0c..3ab1dec 100644 --- a/.devops/main.Dockerfile +++ b/.devops/main.Dockerfile @@ -15,4 +15,6 @@ FROM ubuntu:$UBUNTU_VERSION as runtime COPY --from=build /app/main /main +ENV LC_ALL=C.utf8 + ENTRYPOINT [ "/main" ] |