-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
28 lines (22 loc) · 852 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# It's just debian:trixie-slim with locales and updates.
# Atum is the Egyptian creator god, the first god in the Heliopolitan ennead.
#
FROM debian:trixie-slim
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update -qq \
&& apt-get --yes upgrade \
&& apt-get --yes install --no-install-recommends apt-utils locales sed \
&& apt-get clean autoclean \
&& apt-get autoremove --yes \
&& locale-gen C.UTF-8 \
&& dpkg-reconfigure locales \
&& /usr/sbin/update-locale LANG=C.UTF-8 \
&& ln -sf /usr/share/zoneinfo/Europe/Amsterdam /etc/localtime
RUN echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen \
&& locale-gen
ENV LC_ALL C.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US.UTF-8
COPY bin/get-tags /usr/local/bin/
COPY bin/version-to-tags /usr/local/bin/
RUN chmod +x /usr/local/bin/get-tags /usr/local/bin/version-to-tags