mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-01 12:18:35 -05: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
|