mirror of
https://github.com/evroon/bracket.git
synced 2026-04-21 15:57:00 -04:00
12 lines
151 B
Docker
12 lines
151 B
Docker
FROM node:18-alpine
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
|
|
RUN cd /app \
|
|
&& yarn \
|
|
&& yarn next telemetry disable \
|
|
&& yarn next build
|
|
|
|
CMD yarn start
|