Files
hoppscotch/Dockerfile
2019-09-26 17:10:31 +05:30

15 lines
184 B
Docker

FROM node:12.10.0-buster
LABEL maintainer="Liyas Thomas (liyascthomas@gmail.com)"
WORKDIR /app
COPY . .
RUN npm install
RUN npm run build
EXPOSE 3000
CMD ["npm", "run", "start"]