mirror of
https://github.com/sct/overseerr.git
synced 2025-09-17 17:24:35 +02:00
14 lines
231 B
Docker
14 lines
231 B
Docker
FROM node:12.18-alpine
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
|
|
RUN yarn --frozen-lockfile && \
|
|
yarn build
|
|
|
|
# remove development dependencies
|
|
RUN yarn install --production --ignore-scripts --prefer-offline
|
|
RUN yarn cache clean
|
|
|
|
CMD yarn start
|