mirror of
https://github.com/evroon/bracket.git
synced 2026-02-23 02:06:41 -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
|