Fixed Docker File
This commit is contained in:
parent
1975bbc8d2
commit
5e4da25f8d
2 changed files with 3 additions and 3 deletions
|
@ -11,6 +11,6 @@ COPY --from=build /site/dist /public
|
|||
COPY --from=build /site/serve.json /public/serve.json
|
||||
|
||||
ENV PORT=8081
|
||||
EXPOSE ${PORT}
|
||||
EXPOSE 8081
|
||||
|
||||
CMD [ "serve", "public/", "-p", "${PORT}" ]
|
||||
CMD serve public/ -p ${PORT}
|
||||
|
|
|
@ -59,7 +59,7 @@ const mapped_navdata = navdata.map((item) => ({
|
|||
<meta property="og:locale" content="en_US" />
|
||||
<meta name="theme-color" content="#b86cff" />
|
||||
<!-- Disable DarkReader, as site is already in dark mode -->
|
||||
<meta name="darkreader-lock">
|
||||
<meta name="darkreader-lock" content="this site only has darkmode">
|
||||
<!-- Links -->
|
||||
<link rel="icon" type="image/ico" href="/favicon.ico" />
|
||||
<link rel="sitemap" href="/sitemap-index.xml" />
|
||||
|
|
Loading…
Reference in a new issue