mirror of
https://github.com/evroon/bracket.git
synced 2026-03-09 02:27:41 -04: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
|