mirror of
https://github.com/evroon/bracket.git
synced 2026-04-20 15:27:00 -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
|