We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20b5835 commit a02be1bCopy full SHA for a02be1b
CI/e2e/docker-compose.e2e.yaml
@@ -47,7 +47,7 @@ services:
47
build:
48
context: .
49
ports:
50
- - 4200:80
+ - 4200:8080
51
volumes:
52
- "./CI/e2e/frontend.config.e2e.json:/usr/share/nginx/html/assets/config.json"
53
depends_on:
Dockerfile
@@ -8,8 +8,6 @@ RUN npm ci
8
COPY . /frontend/
9
RUN npx ng build
10
11
-FROM nginx:1.25-alpine
12
-RUN rm -rf /usr/share/nginx/html/*
+FROM nginxinc/nginx-unprivileged
13
COPY --from=builder /frontend/dist/ /usr/share/nginx/html/
14
-COPY scripts/nginx.conf /etc/nginx/nginx.conf
15
-EXPOSE 80
+EXPOSE 8080
scripts/nginx.conf
0 commit comments