chore: Update to Dockerfile to get creating releases to work (#29937)

This commit is contained in:
Joe Li
2024-08-19 09:26:57 -07:00
committed by GitHub
parent 5bd6e92cb8
commit 955db48c59
2 changed files with 8 additions and 3 deletions

View File

@@ -17,7 +17,9 @@
FROM python:3.10-slim-bookworm
RUN apt-get update -y
RUN apt-get install -y jq
RUN apt-get install -y \
git \
jq
COPY make_tarball_entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]