mirror of
https://github.com/iv-org/invidious-redirect.git
synced 2025-02-01 18:14:59 -05:00
Add Dockerfile
This commit is contained in:
parent
5d03438fa1
commit
8518f01633
8
Dockerfile
Normal file
8
Dockerfile
Normal file
@ -0,0 +1,8 @@
|
||||
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/
|
Loading…
x
Reference in New Issue
Block a user