File size: 140 Bytes
a4560d0 | 1 2 3 4 5 6 7 8 9 | FROM node:18
WORKDIR /app
COPY package.json ./
RUN npm install
COPY . .
RUN chmod -R 777 /app
EXPOSE 7860
USER root
CMD ["node", "index.js"] |
a4560d0 | 1 2 3 4 5 6 7 8 9 | FROM node:18
WORKDIR /app
COPY package.json ./
RUN npm install
COPY . .
RUN chmod -R 777 /app
EXPOSE 7860
USER root
CMD ["node", "index.js"] |