From fbfdfdbd3db2f067a07d142ce40ef7f787a8f609 Mon Sep 17 00:00:00 2001 From: jyusang Date: Sat, 16 Jul 2022 15:16:16 +0800 Subject: [PATCH] chore(Dockerfile): Remove unnecessary expose This `EXPOSE` is probably not needed and it's more flexible to use the `-p` flag in `docker run`. --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 50d9ad4..8a4c8f3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,4 +11,3 @@ ADD init-and-run-wiki /usr/local/bin/init-and-run-wiki # Meta CMD ["/usr/local/bin/init-and-run-wiki"] -EXPOSE 8080