Skip to content
Snippets Groups Projects
Select Git revision
  • fa7bdcc4f3c21593ea5e430fb5dbde7811a0a386
  • main default protected
  • cache
3 results

Dockerfile

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Dockerfile 237 B
    FROM debian:stretch
    ENV LANG C.UTF-8
    RUN apt-get update && apt-get install -y locales && rm -rf /var/lib/apt/lists/* \
        && for lang in en_US de_DE; do localedef -i $lang -c -f UTF-8 -A /usr/share/locale/locale.alias $lang.UTF-8; done