Files
bracket/frontend/Dockerfile
2023-09-12 21:37:48 +02:00

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