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
mifi 51b3d2c7c6
Some checks failed
continuous-integration/drone/push Build was killed
A stab at deploying
2023-05-03 15:00:10 -04:00

7 lines
131 B
Docker

FROM node:latest
WORKDIR /app
COPY package.json .
RUN yarn install
COPY . .
RUN yarn build
CMD ["node", "dist/lib/server/index.js"]