We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00cc73d commit 47caf67Copy full SHA for 47caf67
Dockerfile.lambda
@@ -1,5 +1,5 @@
1
# Fetch or build all required binaries
2
-FROM golang:1.19 as builder
+FROM golang:1.20 as builder
3
4
ARG VERSION_REF
5
RUN test -n "${VERSION_REF}"
@@ -42,6 +42,6 @@ COPY --from=builder \
42
/usr/local/bin/kubeapply \
43
/usr/local/bin/
44
45
-COPY --from=builder /usr/local/bin/kubeapply-lambda /var/task/kubeapply-lambda
+COPY --from=builder /usr/local/bin/kubeapply-lambda /kubeapply-lambda
46
47
-CMD [ "kubeapply-lambda" ]
+ENTRYPOINT [ "/kubeapply-lambda" ]
go.mod
@@ -1,6 +1,6 @@
module github.com/segmentio/kubeapply
-go 1.18
+go 1.20
require (
6
github.com/Masterminds/semver/v3 v3.1.1
0 commit comments