bs1in/build/Dockerfile

7 lines
100 B
Docker

FROM golang:1.19
WORKDIR /app/cmd/bs1in
COPY ./cmd/bs1in ./
RUN go get
RUN go build
CMD ["./bs1in"]