Zion Boggan
repos/JWT Differential Fuzzer/targets/golang-jwt/Dockerfile
zionboggan.com ↗
10 lines · text
History for this file →
1
FROM golang:1.23-alpine AS build
2
WORKDIR /src
3
COPY go.mod .
4
COPY server.go .
5
RUN go mod tidy && go build -o /server ./...
6
 
7
FROM alpine:3.20
8
COPY --from=build /server /server
9
EXPOSE 7005
10
CMD ["/server"]