Skip to content

Commit 3073436

Browse files
committed
Frontend - modify serving path for prod bundle
1 parent 90877b3 commit 3073436

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

frontend/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ RUN apt-get update && \
1515
apt-get install -y curl && \
1616
rm -rf /var/lib/apt/lists/*
1717

18-
COPY --from=BUILD_IMAGE /app/dist/frontend /usr/local/apache2/htdocs/
18+
COPY --from=BUILD_IMAGE /app/dist/frontend/browser /usr/local/apache2/htdocs/
1919
COPY --from=BUILD_IMAGE /app/httpd.conf /usr/local/apache2/conf/httpd.conf
2020

2121
COPY docker/startup.sh /usr/local/bin/startup.sh
2222
RUN chmod +x /usr/local/bin/startup.sh
2323

2424
ENTRYPOINT ["/usr/local/bin/startup.sh"]
2525

26-
CMD ["httpd-foreground"]
26+
CMD ["httpd-foreground"]

frontend/src/environments/environment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export const environment: Readonly<MinaEnv> = {
44
production: false,
55
identifier: 'Dev FE',
66
canAddNodes: true,
7-
showWebNodeLandingPage: false,
7+
showWebNodeLandingPage: true,
88
globalConfig: {
99
features: {
1010
dashboard: [],

0 commit comments

Comments
 (0)