daedalOS/Dockerfile
Dustin Brett 8476c0d8d6
Some checks are pending
Tests / tests (push) Waiting to run
Update Docker to 22
2024-10-30 07:45:29 -07:00

14 lines
160 B
Docker

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