Tonic's picture
Add Dockerfile
f1964d2 verified
raw
history blame contribute delete
160 Bytes
FROM node:18-slim
WORKDIR /app
COPY package.json ./
COPY index.js ./
COPY index.html ./
COPY sketch.js ./
RUN npm install
EXPOSE 7860
CMD ["node", "index.js"]