nsfwcheck-api / Dockerfile
caliphdev's picture
Update Dockerfile
0150580 verified
raw
history blame
120 Bytes
FROM node:latest
WORKDIR /app
COPY package.json .
RUN npm install
COPY . /app
EXPOSE 7860
CMD ["node", "index.js"]