fix: add ssh

This commit is contained in:
Georg K 2022-03-03 21:18:32 +03:00
parent a4d54bc847
commit 3cd63129a6

View File

@ -9,6 +9,6 @@ RUN go build -o gomodproxy cmd/gomodproxy/main.go && \
FROM golang:1.17.7-alpine3.15
WORKDIR /opt/app
RUN apk add --no-cache tzdata ca-certificates git
RUN apk add --no-cache tzdata ca-certificates git openssh
COPY --from=build /build/gomodproxy ./
CMD ["/opt/app/gomodproxy", "--addr", ":8080"]