rename cd pipelines

This commit is contained in:
2024-03-11 19:43:07 +01:00
parent 4764be0c2e
commit a4a79a1136
4 changed files with 8 additions and 0 deletions

View File

@@ -1,8 +1,12 @@
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" ]