22 lines
532 B
Docker
22 lines
532 B
Docker
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"]
|