Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions system-test/Dockerfile.linux
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ RUN apt-get update && apt-get install -y curl $ADDITIONAL_PACKAGES \
&& rm -rf /var/lib/apt/lists/*

ENV NVM_DIR /bin/.nvm
# Force ipv4 results first b/275122541
ENV NODE_OPTIONS="--dns-result-order=ipv4first"
RUN mkdir -p $NVM_DIR


Expand Down
2 changes: 2 additions & 0 deletions system-test/Dockerfile.node-alpine
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ RUN go get github.com/google/pprof
FROM node:${NODE_VERSION}-alpine

ARG ADDITIONAL_PACKAGES
# Force ipv4 results first b/275122541
ENV NODE_OPTIONS="--dns-result-order=ipv4first"

RUN apk add --no-cache bash $ADDITIONAL_PACKAGES
WORKDIR /root/
Expand Down