forked from tpill90/steam-lancache-prefill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
26 lines (22 loc) · 787 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
FROM ubuntu:20.04
LABEL maintainers="[email protected];[email protected]"
RUN \
apt update \
&& DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends \
ca-certificates \
libncursesw5 \
locales \
tzdata \
&& sed -i '/en_US.UTF-8/s/^# //' /etc/locale.gen \
&& dpkg-reconfigure --frontend=noninteractive locales \
&& update-locale LANG=en_US.UTF-8 \
&& rm -rf /var/cache/apt/archives /var/lib/apt/lists/*
ENV \
LANG=en_US.UTF-8 \
LANGUAGE=en_US:en \
LC_ALL=en_US.UTF-8 \
TERM=xterm-256color
WORKDIR /usr/bin
COPY /publish/SteamPrefill /
RUN chmod +x /SteamPrefill
ENTRYPOINT [ "/SteamPrefill" ]