daedalOS/Dockerfile
2023-07-04 21:55:56 -07:00

14 lines
160 B
Docker

FROM node:18-alpine
ENV NODE_OPTIONS=--openssl-legacy-provider
RUN apk add --no-cache git
WORKDIR daedalOS
COPY . .
RUN yarn
RUN yarn build
CMD yarn start