noapi / Dockerfile
smgc's picture
Create Dockerfile
44ef370 verified
raw
history blame
No virus
114 Bytes
FROM node:14
WORKDIR /app
RUN npm install express node-fetch@2
COPY . .
EXPOSE 8000
CMD [ "node", "app.js" ]