Yes its always the same domains. Ok, I will re-enable those for sure then.
Here is my Dockerfile (i’m just putting it anyway just in case it helps debugging). Thanks, good point. Maybe I can just add a temporary line where I add apk --no-cache --update add net-tools iproute2 and comment it out when I’m not using it
# https://github.com/GoogleCloudPlatform/community/blob/master/tutorials/elixir-phoenix-on-kubernetes-google-container-engine/Dockerfile
# REPLACE_OS_VARS is used only for POD_IP passed in from GKE yaml
FROM elixir:1.7.4-alpine
ARG APP_NAME=appname
ARG PHOENIX_SUBDIR=.
ENV MIX_ENV=prod \
REPLACE_OS_VARS=true \
TERM=xterm
WORKDIR /opt/app
RUN apk update \
&& apk --no-cache --update add git \
&& mix local.rebar --force \
&& mix local.hex --force
COPY . .
RUN mix do deps.get, deps.compile, compile
RUN mix release --env=prod --verbose \
&& mv _build/prod/rel/${APP_NAME} /opt/release \
&& mv /opt/release/bin/${APP_NAME} /opt/release/bin/start_server
FROM alpine:latest
RUN apk update \
&& apk --no-cache --update add bash openssl-dev
ENV PORT=8080 \
REPLACE_OS_VARS=true \
MIX_ENV=prod
WORKDIR /opt/app
EXPOSE ${PORT}
COPY --from=0 /opt/release .
CMD ["/opt/app/bin/start_server", "foreground"]






















