Skip to content

Commit

Permalink
fix: site name (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
PhotonQuantum authored Jun 11, 2024
1 parent c676bb0 commit f518fe4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules
COPY . .

ARG SITE_NAME
ENV NEXT_PUBLIC_SITE_NAME=$SITE_NAME

# Next.js collects completely anonymous telemetry data about general usage.
# Learn more here: https://nextjs.org/telemetry
# Uncomment the following line in case you want to disable telemetry during the build.
Expand Down Expand Up @@ -65,4 +68,4 @@ ENV PORT 3000

# server.js is created by next build from the standalone output
# https://nextjs.org/docs/pages/api-reference/next-config-js/output
CMD HOSTNAME="0.0.0.0" node server.js
CMD HOSTNAME="0.0.0.0" node server.js

0 comments on commit f518fe4

Please sign in to comment.