blob: 7e68b2708012d1d0a0694ea5bc16c533762f3f08 [file] [log] [blame] [edit]
FROM eclipse-temurin:17-jdk
# The AppEngine Gradle plugin downloads and runs its own gcloud to get the .jar
# to link against, so we need Python even if we use gcloud deploy directly
# instead of using the plugin.
RUN export DEBIAN_FRONTEND=noninteractive && \
apt-get update && \
apt-get upgrade -y && \
apt-get install -y --no-install-recommends python3 && \
rm -rf /var/lib/apt/lists/*