home · login to get plonkin'

Tangled's knot dockerfile with alpine base

@doesnm.cc · 30d ago · plaintext · 29 loc · raw · 1 comment

1FROM alpine:edge as build23RUN apk add go git --no-cache4RUN git clone https://tangled.sh/@tangled.sh/core5WORKDIR /core6RUN go build -o server ./cmd/knotserver7RUN go build ./cmd/keyfetch8RUN go build ./cmd/repoguard910FROM alpine:edge11RUN apk add openssh openrc --no-cache12EXPOSE 2213EXPOSE 55551415COPY --from=build /core/server /bin/server16COPY --from=build /core/keyfetch /bin/keyfetch17RUN echo "  Match User git\18    AuthorizedKeysCommand /bin/keyfetch\19    AuthorizedKeysCommandUser nobody" >> /etc/ssh/sshd_config20RUN adduser -D -h /home/git -s /bin/nologin -u 1000 git21USER git22RUN mkdir /home/git/repos23COPY --from=build /core/repoguard /home/git/repoguard24WORKDIR /home/git25ENV KNOT_REPO_SCAN_PATH=/home/git/repos26ENV APPVIEW_ENDPOINT=https://tangled.sh27ENV KNOT_SERVER_INTERNAL_LISTEN_ADDR=127.0.0.1:544428ENV KNOT_SERVER_LISTEN_ADDR=0.0.0.0:555529ENTRYPOINT ["/bin/server"]

comments

@doesnm.cc · 30d ago

Warning: This dockerfile has ssh broken

login to post a comment