xxxx / Dockerfile
haisang's picture
Upload 5 files
06d5be5 verified
raw
history blame contribute delete
210 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 -r package.json
CMD ["node", "index.js"]