From 4ee7f367e7d8573a8de52506cad0743f093eb386 Mon Sep 17 00:00:00 2001 From: Johannes Date: Mon, 16 Aug 2021 03:31:11 +0200 Subject: [PATCH] =?UTF-8?q?Expose=208080=20so=20that=20reverse-proxies=20l?= =?UTF-8?q?ike=20jwilder/nginx-proxy=20can=20pick=E2=80=A6=20(#97)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Expose 8080 so that reverse-proxies like jwilder/nginx-proxy can pick up on it. * Now actually patching the right image.... Co-authored-by: Dane Everitt --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 9374502..2b3ca02 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,5 +19,8 @@ RUN echo "ID=\"distroless\"" > /etc/os-release # Stage 2 (Final) FROM gcr.io/distroless/static:latest COPY --from=builder /etc/os-release /etc/os-release + COPY --from=builder /app/wings /usr/bin/ CMD [ "/usr/bin/wings", "--config", "/etc/pterodactyl/config.yml" ] + +EXPOSE 8080