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