mirror of
https://github.com/sct/overseerr.git
synced 2025-09-30 15:40:40 +02:00
13 lines
173 B
Docker
13 lines
173 B
Docker
FROM node:12.18-alpine
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
|
|
RUN yarn --frozen-lockfile && \
|
|
yarn build
|
|
|
|
# remove development dependencies
|
|
RUN npm prune --production
|
|
|
|
CMD yarn start
|