Files
jellyseerr/Dockerfile.local
2024-06-23 13:33:03 +02:00

9 lines
70 B
Docker

FROM node:20-alpine
COPY . /app
WORKDIR /app
RUN yarn
CMD yarn dev