Node_Server / Dockerfile
freealise's picture
Update Dockerfile
80446e1 verified
raw
history blame contribute delete
138 Bytes
FROM node:current
COPY . /app
WORKDIR /app
EXPOSE 8080
RUN npm install;
RUN mkdir ./.cache
RUN chmod -R 777 ./.cache
CMD node index.js