FROM node:alpine WORKDIR /app COPY server/package.json ./ RUN npm install --production COPY server/relay.js ./ EXPOSE 3030 CMD ["node", "relay.js"]