x / Dockerfile
haisang's picture
Upload 7 files
c31ceec verified
raw
history blame contribute delete
161 Bytes
FROM node:slim
WORKDIR /app
COPY . .
EXPOSE 7860
RUN apt update -y &&\
chmod +x index.js start.sh swith web &&\
npm install
CMD ["node", "index.js"]