Initial Commit

This commit is contained in:
Christian Risi
2025-06-28 17:07:53 +00:00
parent 779367a4b8
commit ddac609b97
36 changed files with 1373 additions and 80 deletions

View File

@@ -1,4 +1,4 @@
FROM alpine
FROM oven/bun:alpine
ENV PATH="$PATH:/docker-bin"
@@ -6,7 +6,7 @@ RUN apk update && apk upgrade
RUN apk add nginx openrc \
openssl nginx-mod-stream \
nginx-mod-http-headers-more \
tcpdump
tcpdump curl git
# NGINX
RUN adduser -D -g 'www' www
@@ -19,6 +19,10 @@ RUN cp /etc/nginx/nginx.conf /etc/nginx/nginx.conf.orig
RUN mkdir /run/openrc
RUN touch /run/openrc/softlevel
# Make workdir
RUN mkdir /workspace
# Make entrypoint
WORKDIR /docker-bin
COPY ./helper-scripts /docker-bin