dockerfile 95 B

123456
  1. FROM golang:onbuild
  2. WORKDIR .
  3. COPY ./ ./
  4. RUN go build -o pus.
  5. EXPOSE 8080
  6. ENTRYPOINT ["./pus"]