Skip to content

Commit

Permalink
add locales
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaffen committed Jul 11, 2023
1 parent 478fdd3 commit 65260d9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
20 changes: 11 additions & 9 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@ FROM ubuntu:20.04

LABEL org.label-schema.maintainer="betadots GmbH <info@betadots.de>"

ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
ENV DEBIAN_FRONTEND=noninteractive

ADD https://apt.puppet.com/puppet7-release-focal.deb /puppet7-release-focal.deb
Expand All @@ -22,21 +19,26 @@ RUN apt update && apt install -y --no-install-recommends \
libssl1.1 \
libxml2-dev \
libxslt1-dev \
locales \
make \
openssh-client \
openssl \
pdk \
pkg-config\
wget \
zlib1g-dev \
yamllint \
python3-yaml \
puppet-agent \
pdk \
puppetdb-termini \
&& /opt/puppetlabs/puppet/bin/puppet module install puppet-catalog_diff
python3-yaml \
wget \
yamllint \
zlib1g-dev \
&& /opt/puppetlabs/puppet/bin/puppet module install puppet-catalog_diff \
&& locale-gen en_US.UTF-8
# && /opt/puppetlabs/puppet/bin/bundle install

ENV PATH=/opt/puppetlabs/server/bin:/opt/puppetlabs/puppet/bin:/opt/puppetlabs/bin:$PATH
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8

# ENTRYPOINT ["/opt/puppetlabs/bin/puppet"]
# CMD ["agent" "--verbose" "--onetime" "--no-daemonize"
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ includes:
- catalog_diff
- PDK 3.0.0
- Puppetdb-termini 7.13.1
- yamllint

0 comments on commit 65260d9

Please sign in to comment.