DockerGoFlanT5 / Dockerfile
awacke1's picture
Update Dockerfile
a4561fd
raw
history blame contribute delete
232 Bytes
FROM golang:1.18 as builder
WORKDIR /workdir
COPY main.go .
RUN go build -o main main.go
FROM golang:1.18
WORKDIR /workdir
COPY --from=builder /workdir/main /main
RUN dd if=/dev/random of=1g.img bs=1 count=0 seek=10G
CMD /main