26 lines
476 B
Docker
26 lines
476 B
Docker
FROM golang:1.23-alpine AS builder
|
|
|
|
WORKDIR /app
|
|
|
|
COPY go.mod go.sum ./
|
|
|
|
RUN go mod tidy
|
|
|
|
COPY . .
|
|
|
|
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o main ./cmd/api
|
|
# RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o app .
|
|
|
|
FROM alpine:latest
|
|
|
|
# Set timezone ke Asia/Jakarta
|
|
ENV TZ=Asia/Jakarta
|
|
|
|
RUN apk --no-cache add ca-certificates tzdata
|
|
|
|
WORKDIR /root/
|
|
|
|
COPY --from=builder /app/main .
|
|
COPY --from=builder /app/.env .
|
|
EXPOSE 8084
|
|
CMD ["./main"] |