mirror of
https://github.com/vcscsvcscs/GenerationsHeritage.git
synced 2025-08-12 22:09:07 +02:00
13 lines
206 B
Plaintext
13 lines
206 B
Plaintext
FROM golang:1.22.2-alpine as build
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN GOOS=linux GOARCH=arm64 go build -o auth-service
|
|
|
|
FROM arm64v8/busybox
|
|
|
|
COPY --from=build /app/auth-service /app/
|
|
|
|
CMD [ "/app/auth-service" ] |