File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -21,14 +21,14 @@ FROM nginx:1-alpine-slim
21
21
COPY --from=build-step /app/dist /usr/share/nginx/html
22
22
COPY --from=build-step /app/config.schema.json /etc/nginx/conf.d/config.schema.json
23
23
24
- # change default port to 8084
24
+ # change default port to 8085
25
25
RUN apk add jq pcre-tools && \
26
- sed -i 's/\s*listen\s*80;/ listen 8084 ;/' /etc/nginx/conf.d/default.conf && \
26
+ sed -i 's/\s*listen\s*80;/ listen 8085 ;/' /etc/nginx/conf.d/default.conf && \
27
27
sed -i 's/\s*location \/ {/ location \/ {\n try_files $uri $uri\/ \/index.html;/' /etc/nginx/conf.d/default.conf
28
28
29
- EXPOSE 8084
29
+ EXPOSE 8085
30
30
31
31
STOPSIGNAL SIGTERM
32
32
33
33
# override entrypoint, which calls nginx-entrypoint underneath
34
- COPY --from=build-step /app/docker/docker-entrypoint.sh ./docker-entrypoint.d/40-stac-browser-entrypoint.sh
34
+ COPY --from=build-step /app/docker/docker-entrypoint.sh ./docker-entrypoint.d/40-stac-browser-entrypoint.sh
You can’t perform that action at this time.
0 commit comments