FROM node:22-alpine
WORKDIR /app
ENV APP_PORT=3200
COPY deploy/server.mjs ./server.mjs
COPY out ./public
EXPOSE 3200
CMD ["node", "server.mjs"]
