mirror of
https://github.com/DustinBrett/daedalOS.git
synced 2025-12-06 00:20:05 +01:00
14 lines
160 B
Docker
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
|