🔧 fix(skilltree): change web port to 5020 (5018 used by zitare)

This commit is contained in:
Till-JS 2026-02-13 23:14:38 +01:00
parent d49d147257
commit 405084b52d
3 changed files with 7 additions and 7 deletions

View file

@ -66,16 +66,16 @@ COPY --from=builder /app/apps/skilltree/apps/web/build ./build
COPY --from=builder /app/apps/skilltree/apps/web/package.json ./
# Expose port
EXPOSE 5018
EXPOSE 5020
# Set environment variables
ENV NODE_ENV=production
ENV PORT=5018
ENV PORT=5020
ENV HOST=0.0.0.0
# Health check
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
CMD wget --no-verbose --tries=1 --spider http://localhost:5018/health || exit 1
CMD wget --no-verbose --tries=1 --spider http://localhost:5020/health || exit 1
# Run the app
CMD ["node", "build"]