mirror of
https://github.com/DustinBrett/daedalOS.git
synced 2026-01-15 12:15:02 +00:00
14 lines
160 B
Docker
14 lines
160 B
Docker
FROM node:21-alpine
|
|
|
|
ENV NODE_OPTIONS=--openssl-legacy-provider
|
|
|
|
RUN apk add --no-cache git
|
|
|
|
WORKDIR daedalOS
|
|
COPY . .
|
|
|
|
RUN yarn
|
|
RUN yarn build
|
|
|
|
CMD yarn serve
|