mirror of
https://github.com/iv-org/invidious-redirect.git
synced 2024-11-23 05:49:40 +00:00
9 lines
168 B
Docker
9 lines
168 B
Docker
FROM node:14.5.0-alpine as build
|
|
WORKDIR /app
|
|
COPY . .
|
|
RUN npm install
|
|
RUN npm run build
|
|
|
|
FROM nginx:alpine as app
|
|
COPY --from=build /app/build/ /usr/share/nginx/html/
|