Fix content and URL in README

This commit is contained in:
khalid@traclabs.com
2026-04-22 23:52:29 -05:00
parent 6aa4288821
commit 86476115df
4 changed files with 36 additions and 2 deletions

View File

@@ -24,10 +24,14 @@ COPY --from=base /app/dist ./dist
COPY --from=base /app/package.json ./
COPY --from=base /app/site-context.json ./
COPY --from=base /app/content ./content
COPY --from=base /app/content ./content-seed
COPY --from=base /app/config ./config
COPY --from=base /app/server/entrypoint.sh /app/entrypoint.sh
RUN chmod +x /app/entrypoint.sh
ENV HOST=0.0.0.0
ENV PORT=4321
EXPOSE 4321
ENTRYPOINT ["/app/entrypoint.sh"]
CMD ["node", "dist/server/entry.mjs"]