n4auth/Dockerfile
2021-07-15 22:55:57 +03:00

11 lines
84 B
Docker

FROM node
ADD ./ /auth
WORKDIR /auth
RUN npm i
EXPOSE 3000
CMD ["npm", "start"]