mirror of
https://github.com/sct/overseerr.git
synced 2025-12-24 15:57:20 +01:00
10 lines
93 B
Docker
10 lines
93 B
Docker
FROM node:12.18-alpine
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
|
|
RUN yarn && \
|
|
yarn build
|
|
|
|
CMD yarn start
|