Install zip (#122)
This is for convenience so customers can package their actions inside of the runtime.
diff --git a/core/python39Action/Dockerfile b/core/python39Action/Dockerfile
index 2366371..0f3ff90 100644
--- a/core/python39Action/Dockerfile
+++ b/core/python39Action/Dockerfile
@@ -38,6 +38,10 @@
# select the builder to use
ARG GO_PROXY_BUILD_FROM=release
+# install zip
+RUN apt-get update && apt-get install -y zip \
+ && rm -rf /var/lib/apt/lists/*
+
# Install common modules for python
COPY requirements_common.txt requirements_common.txt
COPY requirements.txt requirements.txt