adding flask protobuf

This commit is contained in:
2023-11-04 00:41:12 -03:00
parent ac8bff31f2
commit e8ae8935f2
8 changed files with 49 additions and 59 deletions

View File

@@ -6,7 +6,12 @@ ENV PYTHONUNBUFFERED=1
WORKDIR /app
RUN apt-get update && apt-get install -y imagemagick && apt-get install -y wget && ls
RUN apt-get update && \
apt-get install -y wget && \
wget https://github.com/protocolbuffers/protobuf/releases/download/v25.0/protoc-25.0-linux-x86_64.zip && \
unzip protoc-25.0-linux-x86_64.zip && \
mv bin/protoc /usr/local/bin/ && \
rm -rf protoc-25.0-linux-x86_64.zip bin include readme.txt
RUN wget https://files.ivanch.me/api/public/dl/iFuXSNhw/small-image.png && \
wget https://files.ivanch.me/api/public/dl/81Bkht5C/big-image.png && \