Skip to content

Commit

Permalink
fix: update docker image for gapic action (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
jpoehnelt authored Jan 8, 2021
1 parent aeb76c7 commit 6a2fb67
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions actions/gapic/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
FROM l.gcr.io/google/rbe-ubuntu18-04:latest
# https://github.com/GoogleCloudPlatform/container-definitions/tree/master
FROM ubuntu:21.04

ARG DEBIAN_FRONTEND=noninteractive

RUN apt-get -qq update \
&& apt-get -qq install curl python3 python3-pip python3-distutils python-is-python3 git

RUN curl -L https://github.com/bazelbuild/bazelisk/releases/download/v1.6.1/bazelisk-linux-amd64 -o bazel \
&& cp bazel /usr/local/bin/bazel \
&& chmod +x /usr/local/bin/bazel \
&& bazel version

RUN python --version

COPY entrypoint.sh /entrypoint.sh

Expand Down

0 comments on commit 6a2fb67

Please sign in to comment.