File size: 367 Bytes
5e59eab | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | FROM node:21
WORKDIR /app
COPY testProjectExocoreWeb-main.zip .
RUN apt-get update && apt-get install -y unzip && \
unzip testProjectExocoreWeb-main.zip && \
chown -R node:node testProjectExocoreWeb-main && \
chmod -R u+rwX testProjectExocoreWeb-main
USER node
WORKDIR /app/testProjectExocoreWeb-main
RUN npm install
EXPOSE 7860
CMD ["npm", "start"] |