Dockerfile.armv6 typos

This commit is contained in:
Sergey Bogatyrets 2022-11-08 14:55:20 +03:00
parent 3838358f76
commit cc194c57f7
1 changed files with 1 additions and 2 deletions

View File

@ -6,8 +6,7 @@ WORKDIR /go/src/github.com/serjs/socks5
COPY . .
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -ldflags '-s' -o ./socks5
FROM SCRATCH
FROM scratch
COPY --from=builder /go/src/github.com/serjs/socks5/socks5 /
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY --from=builder /go/src/github.com/serjs/socks5/socks5 /
ENTRYPOINT ["/socks5"]