We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 52836ca + 11720e1 commit 8a2e214Copy full SHA for 8a2e214
.github/workflows/ci.yaml
@@ -33,7 +33,7 @@ env:
33
XPKG: xpkg.upbound.io/${{ github.repository}}
34
35
# The package version to push. The default is 0.0.0-gitsha.
36
- XPKG_VERSION: v0.5.0
+ XPKG_VERSION: v0.5.1
37
38
jobs:
39
unit-test:
Dockerfile
@@ -37,6 +37,8 @@ RUN --mount=target=. \
# Produce the Function image. We use a very lightweight 'distroless' image that
# does not include any of the build tools used in previous stages.
FROM kcllang/kcl AS image
40
+# Walkaround for #68: unset the kcl cache path env variable (the value is /tmp) to avoid the data competition.
41
+RUN unset KCL_CACHE_PATH
42
WORKDIR /
43
COPY --from=build /function /function
44
EXPOSE 9443
0 commit comments