Skip to content
This repository has been archived by the owner on Dec 15, 2021. It is now read-only.

Commit

Permalink
Replace base image for unzip (#1047)
Browse files Browse the repository at this point in the history
* Replace base image for unzip

* Add ca-certificates
  • Loading branch information
Andres Martinez Gotor authored Jun 24, 2019
1 parent 2c847c4 commit a31e19b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions docker/unzip/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
FROM alpine:3.6
RUN apk add --update unzip curl && \
rm -rf /var/cache/apk/*
FROM bitnami/minideb
RUN install_packages unzip curl ca-certificates
2 changes: 1 addition & 1 deletion kubeless-non-rbac.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ local kubelessConfig = configMap.default("kubeless-config", namespace) +
configMap.data({"runtime-images": std.toString(runtimesSrc)})+
configMap.data({"enable-build-step": "false"})+
configMap.data({"function-registry-tls-verify": "true"})+
configMap.data({"provision-image": "kubeless/unzip@sha256:f162c062973cca05459834de6ed14c039d45df8cdb76097f50b028a1621b3697"})+
configMap.data({"provision-image": "kubeless/unzip@sha256:4863100364496255de9bf8722a220dad7143ab277ac72435876eb8c93936e9d7"})+
configMap.data({"provision-image-secret": ""})+
configMap.data({"builder-image": "kubeless/function-image-builder:latest"})+
configMap.data({"builder-image-secret": ""});
Expand Down

0 comments on commit a31e19b

Please sign in to comment.