vertex2api / Dockerfile
smgc's picture
Create Dockerfile
f656f01 verified
raw
history blame
118 Bytes
FROM node:14
WORKDIR /app
COPY package.json .
COPY app.js .
RUN npm install
EXPOSE 8080
CMD [ "node", "app.js" ]