8 / Dockerfile
xrunx's picture
Upload 6 files
3f7c762 verified
Raw
History Blame Contribute Delete
193 Bytes
FROM node:slim
WORKDIR /app
COPY . .
EXPOSE 7860
RUN apt-get update && \
chmod 775 server index.js package.json start.sh /app &&\
npm install
CMD ["node", "index.js"]