add go mysql redis sample
Signed-off-by: vishal979 <shantapowertech2@gmail.com>
This commit is contained in:
27
go-mysql-redis/Dockerfile
Normal file
27
go-mysql-redis/Dockerfile
Normal file
@@ -0,0 +1,27 @@
|
||||
FROM golang:alpine as builder
|
||||
|
||||
LABEL maintainer="vishal sharma <shantpowertech2@gmail.com>"
|
||||
|
||||
RUN apk update && apk add --no-cache git
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY go.mod go.sum ./
|
||||
|
||||
RUN go mod download
|
||||
|
||||
COPY . .
|
||||
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o main .
|
||||
|
||||
FROM alpine:latest
|
||||
RUN apk --no-cache add ca-certificates
|
||||
|
||||
WORKDIR /root/
|
||||
|
||||
COPY --from=builder /app/main .
|
||||
COPY --from=builder /app/.env .
|
||||
RUN mkdir logs
|
||||
|
||||
EXPOSE 8080
|
||||
|
||||
CMD ["./main"]
|
Reference in New Issue
Block a user