Skip to content

Commit

Permalink
Wildcard match Typescript OS dependencies (#265)
Browse files Browse the repository at this point in the history
Debian added semver suffixes to the protobuf-compiler and
libprotobuf-dev packages (e.g. 3.6.1.3-2+deb10u1) so we need to be a
little bit more flexible in matching dependencies here. Same thing was
needed for the Java deps a few months ago.
  • Loading branch information
mmcshane authored Apr 18, 2023
1 parent 25c6c49 commit 1cc4223
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dockerfiles/ts.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ FROM node:16 as build
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive \
apt-get install --no-install-recommends --assume-yes \
protobuf-compiler=3.6.1.3-2 libprotobuf-dev=3.6.1.3-2
protobuf-compiler=3.6.1.3-2* libprotobuf-dev=3.6.1.3-2*

# Get go compiler
ARG PLATFORM=amd64
Expand Down

0 comments on commit 1cc4223

Please sign in to comment.