Skip to content

Instantly share code, notes, and snippets.

@tommie
Created May 17, 2024 11:53
Show Gist options
  • Save tommie/c38afdfe2fab5d2d9ca93285fe598274 to your computer and use it in GitHub Desktop.
Save tommie/c38afdfe2fab5d2d9ca93285fe598274 to your computer and use it in GitHub Desktop.
protobuf-javascript Dockerfile for Alpine Linux.
# https://github.com/protocolbuffers/protobuf-javascript/issues/105
# https://github.com/protocolbuffers/protobuf/pull/9874
FROM alpine
RUN apk --no-cache add gcompat
ARG protoc_js_ver=3.21.2
RUN cd /usr/local &&\
wget -Oprotojs.tar.gz "https://github.com/protocolbuffers/protobuf-javascript/releases/download/v$protoc_js_ver/protobuf-javascript-$protoc_js_ver-linux-$(uname -m).tar.gz" &&\
tar xzf protojs.tar.gz bin/protoc-gen-js &&\
rm -f protojs.tar.gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment