-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Containerfile to use plain Nginx
Only add required files to container Fix HTML title
- Loading branch information
Showing
4 changed files
with
15 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
dist/build.tar | ||
dist/output |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
FROM registry.access.redhat.com/ubi9/nginx-122:1-45 | ||
FROM nginx:1.27.2-alpine | ||
|
||
RUN rm -r /usr/share/nginx/html \ | ||
&& mkdir /usr/share/nginx/html | ||
|
||
WORKDIR /usr/share/nginx/html | ||
|
||
ADD dist . | ||
|
||
CMD nginx -g "daemon off;" | ||
CMD nginx -g "daemon off;" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,4 +24,7 @@ export default defineConfig({ | |
"@layouts": "./src/layouts", | ||
}, | ||
}, | ||
html: { | ||
title: 'Meshtastic Web', | ||
}, | ||
}); |