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