This repository has been archived on 2023-05-17. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
auth/Dockerfile
2023-05-03 16:52:19 -04:00

6 lines
85 B
Docker

FROM node
WORKDIR /
COPY . .
RUN yarn build
CMD ["node", "dist/lib/server/index.js"]