Compare commits

..

1 Commits
master ... main

Author SHA1 Message Date
enve
63bb3aa4db test
All checks were successful
ci / docker (push) Successful in 39s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 8s
2024-09-27 20:53:49 +02:00

View File

@ -1,4 +1,3 @@
#Build the Go Binary.
FROM golang:1.22 as build_actions_test FROM golang:1.22 as build_actions_test
ENV CGO_ENABLED 0 ENV CGO_ENABLED 0
@ -13,4 +12,4 @@ RUN go build
FROM alpine:3.20 FROM alpine:3.20
COPY --from=build_actions_test /service/ /app/ COPY --from=build_actions_test /service/ /app/
WORKDIR /app WORKDIR /app
CMD ["./actions_test"] CMD ["./actions_test"]