mirror of
https://github.com/iv-org/invidious.io.git
synced 2024-12-28 00:59:31 -05:00
Add Dockerfile and container release CI
This commit is contained in:
parent
41b11f48ff
commit
a45bf74cbd
35
.github/workflows/container-release.yml
vendored
Normal file
35
.github/workflows/container-release.yml
vendored
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
---
|
||||||
|
name: Build and release container
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- "master"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
release:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Set up QEMU
|
||||||
|
uses: docker/setup-qemu-action@v1
|
||||||
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v1
|
||||||
|
|
||||||
|
- name: Login to registry
|
||||||
|
uses: docker/login-action@v1
|
||||||
|
with:
|
||||||
|
registry: quay.io
|
||||||
|
username: ${{ secrets.QUAY_USERNAME }}
|
||||||
|
password: ${{ secrets.QUAY_PASSWORD }}
|
||||||
|
|
||||||
|
- name: Build and push
|
||||||
|
uses: docker/build-push-action@v2
|
||||||
|
with:
|
||||||
|
push: true
|
||||||
|
tags: quay.io/invidious/invidious.io:latest
|
9
Dockerfile
Normal file
9
Dockerfile
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
FROM docker.io/library/node:16 as build
|
||||||
|
COPY . .
|
||||||
|
RUN npm install
|
||||||
|
RUN npm run build
|
||||||
|
|
||||||
|
FROM docker.io/library/nginx:alpine
|
||||||
|
COPY --from=build /public/ /usr/share/nginx/html/
|
||||||
|
# TheFrenchGhosty: The videos/ folder has been removed, no idea why it's created
|
||||||
|
RUN rm -rf /usr/share/nginx/html/videos
|
Loading…
Reference in New Issue
Block a user