mirror of
https://github.com/sct/overseerr.git
synced 2025-12-25 08:14:29 +01:00
9 lines
75 B
Docker
9 lines
75 B
Docker
FROM node:18.18.2-alpine
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
|
|
RUN yarn
|
|
|
|
CMD yarn dev
|