mirror of
https://github.com/vcscsvcscs/GenerationsHeritage.git
synced 2025-08-13 22:39:06 +02:00
14 lines
214 B
Plaintext
14 lines
214 B
Plaintext
FROM golang:1.22.2-alpine as build
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
COPY ../utilities ../utilities
|
|
|
|
RUN GOOS=linux GOARCH=arm64 go build -o backend
|
|
|
|
FROM busybox
|
|
|
|
COPY --from=build /app/backend /app/
|
|
|
|
CMD [ "/app/backend" ] |