mirror of
https://github.com/evroon/bracket.git
synced 2026-03-03 22:58:03 -05:00
8 lines
115 B
Docker
8 lines
115 B
Docker
FROM node:18-alpine
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
|
|
RUN cd /app && yarn && yarn next telemetry disable
|
|
CMD yarn run dev
|