add docker build
This commit is contained in:
parent
5698d86756
commit
fa1b98365b
18 changed files with 686 additions and 0 deletions
14
docker/base/Dockerfile
Normal file
14
docker/base/Dockerfile
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
FROM debian:buster
|
||||
|
||||
LABEL maintainer="0x2620@0x2620.org"
|
||||
|
||||
ENV LANG en_US.UTF-8
|
||||
|
||||
RUN apt-get update && \
|
||||
LANG=C.UTF-8 DEBIAN_FRONTEND=noninteractive apt-get install -y apt-utils locales && \
|
||||
echo en_US.UTF-8 UTF-8 > /etc/locale.gen && \
|
||||
locale-gen en_US.UTF-8 && \
|
||||
update-locale LANG=en_US.UTF-8
|
||||
|
||||
COPY ./install.sh /install.sh
|
||||
RUN /install.sh
|
||||
Loading…
Add table
Add a link
Reference in a new issue