Initial commit for gocast
This commit is contained in:
21
Dockerfile
Normal file
21
Dockerfile
Normal file
@@ -0,0 +1,21 @@
|
||||
FROM golang:alpine as builder
|
||||
RUN apk update && \
|
||||
apk upgrade && \
|
||||
apk add --no-cache git && \
|
||||
apk add make
|
||||
RUN mkdir -p /opt/gocast
|
||||
RUN mkdir -p /go/src/github.com/mayuresh82
|
||||
RUN cd /go/src/github.com/mayuresh82 && \
|
||||
git clone --branch dev https://github.com/mayuresh82/gocast
|
||||
WORKDIR /go/src/github.com/mayuresh82/gocast
|
||||
RUN make
|
||||
RUN cp gocast /opt/gocast/
|
||||
|
||||
FROM alpine:latest
|
||||
RUN apk --no-cache add ca-certificates
|
||||
WORKDIR /root/
|
||||
COPY --from=builder /opt/gocast/gocast .
|
||||
|
||||
EXPOSE 8080/tcp
|
||||
|
||||
ENTRYPOINT ["./gocast"]
|
||||
Reference in New Issue
Block a user