21 lines
412 B
Docker
21 lines
412 B
Docker
|
FROM golang:1.23.1 AS builder
|
||
|
|
||
|
WORKDIR /app
|
||
|
ENV GO111MODULE=on
|
||
|
|
||
|
COPY ../../src/Guestbooky-backup/ .
|
||
|
|
||
|
RUN go mod download
|
||
|
|
||
|
RUN go build -o guestbooky-backup .
|
||
|
|
||
|
# Start a new stage from scratch
|
||
|
FROM alpine:latest
|
||
|
|
||
|
WORKDIR /root/
|
||
|
|
||
|
# Copy the Pre-built binary file from the previous stage
|
||
|
COPY --from=builder /app/guestbooky-backup .
|
||
|
|
||
|
# Command to run the executable
|
||
|
CMD ["./guestbooky-backup"]
|