FROM node:latest
WORKDIR /opt/RMS
COPY package*.json ./
RUN npm install
COPY public ./public
COPY scripts .
COPY *.js .
COPY *.mjs .
COPY *.html .
EXPOSE 3000
CMD ["sh", "./run.sh"]