Skip to content
This repository was archived by the owner on May 21, 2024. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion proto/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ FROM python:3.6-slim
LABEL maintainer="jdoliner@pachyderm.io"

RUN pip3 install grpcio==1.38.0 grpcio-tools==1.38.0
RUN apt-get update && apt-get install -y gcc
RUN apt-get update && apt-get install -y gcc \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN pip3 install "betterproto[compiler]"==2.0.0b3

ADD run /bin
Expand Down