Jullus / Dockerfile
alcex's picture
Update Dockerfile
3d5bf4e verified
raw
history blame contribute delete
318 Bytes
FROM golang:1.21-alpine AS builder
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN CGO_ENABLED=0 GOOS=linux go build -o myapp .
RUN chmod +x myapp # θ΅‹δΊˆζ‰§θ‘Œζƒι™
FROM alpine:latest
WORKDIR /app
COPY --from=builder /app/myapp .
EXPOSE 8080
ENV AUTH_TOKEN=your_auth_token_here
CMD ["./myapp"]