initial commit

This commit is contained in:
Pin
2022-12-20 22:15:44 -05:00
commit 9a0c74b701
7 changed files with 104 additions and 0 deletions

11
client/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM alpine:3.16
RUN apk --no-cache add openrc openssh bash && \
ssh-keygen -A && \
mkdir -p /run/openrc && \
touch /run/openrc/softlevel
COPY scripts /opt/scripts
RUN chmod 700 /opt/scripts
ENTRYPOINT ["/opt/scripts/setup.sh"]