Skip to content

Commit

Permalink
fix(deps) install wget as well (#287)
Browse files Browse the repository at this point in the history
With FIPS build, we are dropping luasec in the container(on both FIPS
and non-FIPS build), as it's only used in development; it's now moved
to a dev dependency
(Kong/kong-ee@d0c789d).

With that removed, luarocks fallbacks to wget. On Alpine,
wget comes with busybox doesn't understand `--timestamp` and cause
all dependencies failed to install.
  • Loading branch information
fffonion authored Jun 8, 2022
1 parent 30f6edd commit d9f1b21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ USER root
# But that means hardcoding and that doesn't play well with the nature of Pongo
# that should be independent of Kong versions.
RUN apk update \
&& apk add zip unzip make g++ py-pip jq git bsd-compat-headers m4 openssl-dev curl python3-dev \
&& apk add zip unzip make g++ py-pip jq git bsd-compat-headers m4 openssl-dev curl wget python3-dev \
&& curl -k -s -S -L https://github.com/fullstorydev/grpcurl/releases/download/v1.7.0/grpcurl_1.7.0_linux_x86_64.tar.gz | tar xz -C /kong/bin \
&& pip install httpie \
; cd /kong \
Expand Down

0 comments on commit d9f1b21

Please sign in to comment.