From 75483428038b61ad8fcc8b46fde9642e962041f5 Mon Sep 17 00:00:00 2001 From: Jan Klattenhoff Date: Sun, 19 Jan 2025 19:40:03 +0100 Subject: [PATCH] build(Dockerfile): expose port 4200 for Angular app --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d32a01c..cff3dd4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,5 +7,5 @@ COPY . /usr/src/app RUN npm install -g @angular/cli RUN npm install - +EXPOSE 4200 CMD ["sh", "-c", "ng serve --configuration=${ANGULAR_CONFIG:-development}"]