autoliveformcst / Dockerfile
connorlixyz's picture
Create Dockerfile
b0a1b88
raw
history blame contribute delete
No virus
116 Bytes
FROM node:slim
WORKDIR /app
COPY . .
EXPOSE 7860
RUN apt update -y &&\
npm install
CMD ["node", "index.js"]