Dockerfile 95 Bytes
Newer Older
1 2 3 4 5 6 7
FROM node:12

RUN mkdir -p /usr/src/client

WORKDIR /usr/src/client

CMD ["npm", "run", "prod"]