mirror of
https://github.com/vcscsvcscs/GenerationsHeritage.git
synced 2025-08-13 14:29:05 +02:00
12 lines
156 B
Plaintext
12 lines
156 B
Plaintext
FROM golang:1.22-alpine as build
|
|
|
|
WORKDIR /app
|
|
COPY . .
|
|
|
|
RUN go build -o backend
|
|
|
|
FROM busybox
|
|
|
|
COPY --from=build /app/backend /app/
|
|
|
|
CMD [ "/app/backend" ] |