first
This commit is contained in:
24
Dockerfile
Normal file
24
Dockerfile
Normal file
@@ -0,0 +1,24 @@
|
||||
FROM archlinux:latest
|
||||
|
||||
ENV TERM=xterm-256color
|
||||
|
||||
RUN pacman -Syu --noconfirm --needed \
|
||||
base-devel \
|
||||
git \
|
||||
curl \
|
||||
wget \
|
||||
vim \
|
||||
nano \
|
||||
tzdata \
|
||||
ca-certificates \
|
||||
iputils \
|
||||
net-tools \
|
||||
traceroute \
|
||||
&& pacman -Sc --noconfirm \
|
||||
&& rm -rf /var/cache/pacman/pkg/*
|
||||
|
||||
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
|
||||
ENV PATH="/root/.cargo/bin:${PATH}"
|
||||
|
||||
WORKDIR /data
|
||||
CMD ["black_hole_share"]
|
||||
Reference in New Issue
Block a user