Initial commit
This commit is contained in:
11
Dockerfile
Normal file
11
Dockerfile
Normal file
@@ -0,0 +1,11 @@
|
||||
FROM golang:alpine as builder
|
||||
WORKDIR /app
|
||||
COPY go.mod /app/go.mod
|
||||
COPY go.sum /app/go.sum
|
||||
RUN go mod download
|
||||
COPY . /app
|
||||
RUN go build -o ministream main.go
|
||||
|
||||
FROM alpine:latest
|
||||
COPY --from=builder /app/ministream /usr/bin/ministream
|
||||
CMD ["/usr/bin/ministream", "serve"]
|
Reference in New Issue
Block a user