mirror of
https://github.com/burghardt/easy-wg-quick.git
synced 2026-01-25 10:32:01 +01:00
20 lines
458 B
Docker
20 lines
458 B
Docker
FROM debian:testing-slim
|
|
|
|
ENV LANG en_US.UTF-8
|
|
ENV LANGUAGE en_US
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends locales && \
|
|
locale-gen $LANG && \
|
|
apt-get full-upgrade -y && \
|
|
apt-get install -y --no-install-recommends shellcheck && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|