Skip to content

Commit

Permalink
Install python in prereqs image (#1350)
Browse files Browse the repository at this point in the history
Maybe `buildpack-deps` has recently removed python installation by
default and hence is observing some errors.
  • Loading branch information
sampajano authored Jul 29, 2023
1 parent 9c48d29 commit 7c52878
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 0 additions & 2 deletions net/grpc/gateway/docker/interop_client/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ RUN npm install && \
cp index.html /var/www/html && \
cp dist/main.js /var/www/html/dist

RUN apt-get -qq update && apt-get -qq install -y python

WORKDIR /var/www/html

EXPOSE 8081
Expand Down
2 changes: 2 additions & 0 deletions net/grpc/gateway/docker/prereqs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ FROM node:20.0.0-bullseye AS copy-and-build
ARG MAKEFLAGS=-j8
ARG BAZEL_VERSION=4.1.0

RUN apt-get -qq update && apt-get -qq install -y python

RUN mkdir -p /var/www/html/dist
RUN echo "\nloglevel=error\n" >> $HOME/.npmrc

Expand Down

0 comments on commit 7c52878

Please sign in to comment.