mirror of
https://github.com/sct/overseerr.git
synced 2025-09-17 17:24:35 +02:00

Node v14.x (LTS) update from 2021-02-23 includes vulnerability fixes https://nodejs.org/en/blog/release/v14.16.0/
9 lines
73 B
Docker
9 lines
73 B
Docker
FROM node:14.16-alpine
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
|
|
RUN yarn
|
|
|
|
CMD yarn dev
|