segfault/master/Dockerfile

52 lines
1.2 KiB
Docker
Raw Normal View History

2022-12-16 23:31:12 +00:00
# sf-master
2022-12-06 16:03:56 +00:00
FROM ubuntu:22.04
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
curl \
2022-12-16 23:31:12 +00:00
fcgiwrap \
2022-12-06 16:03:56 +00:00
fping \
2022-12-16 23:31:12 +00:00
gnupg \
2022-12-06 16:03:56 +00:00
inetutils-ping \
iptables \
iproute2 \
iperf \
2022-12-16 23:31:12 +00:00
lsb-release \
2022-12-06 16:03:56 +00:00
net-tools \
netcat \
nginx \
2022-12-16 23:31:12 +00:00
psmisc \
redis-tools \
2022-12-06 16:03:56 +00:00
tcpdump \
wget \
2022-12-16 23:31:12 +00:00
wireguard-tools \
vim
# Alpine's fcgiwrap does not support '-p' :/
# FROM alpine
# RUN apk add --no-cache --upgrade \
# && apk add --no-cache \
# bash \
# curl \
# docker-cli \
# fcgiwrap \
# fping \
# iptables \
# iproute2 \
# net-tools \
# `#nginx` \
# psmisc \
# redis \
# `#tcpdump` \
# wget \
# wireguard-tools \
# vim
2022-12-06 16:03:56 +00:00
2022-12-16 23:31:12 +00:00
COPY setup.sh init-master.sh /
COPY /cgi-bin /cgi-bin
RUN /setup.sh
2022-12-06 16:03:56 +00:00
CMD ["bash", "-il"]