🚧 Testing with Docker Image

This commit is contained in:
Manuel Ruwe 2022-12-21 20:13:55 +01:00
parent 097db297a6
commit d577c6975e
3 changed files with 36 additions and 44 deletions

View File

@ -1,4 +1,3 @@
src
test
images
docs

View File

@ -22,48 +22,37 @@ env:
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
strategy:
matrix:
include:
- arch: amd64
distro: ubuntu-latest
- arch: arm32v7
distro: ubuntu-latest
- arch: arm64v8
distro: ubuntu-latest
steps:
- name: Setup
uses: actions/setup-node@v3
- name: Checkout
uses: actions/checkout@v3
- run: yarn install --immutable
- run: yarn build
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
- uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
# list of Docker images to use as base name for tags
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to GHCR
uses: docker/login-action@v2
node-version: 16.17.1
- name: Install dependencies
run: yarn install
- name: Build project
run: yarn build
- name: Build Docker image
run: | # .${platform}
docker build -t ghcr.io/${{ github.repository_owner }}/jellyfin-discord-music-bot:${GITHUB_SHA}-${{ matrix.arch }} -f Dockerfile .
docker tag ghcr.io/${{ github.repository_owner }}/jellyfin-discord-music-bot:${GITHUB_SHA}-${{ matrix.arch }} ghcr.io/${{ github.repository_owner }}/jellyfin-discord-music-bot:latest
- name: Log in to GHCR
uses: docker/login-action@v1
with:
registry: ${{ env.REGISTRY }}
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v3
with:
platforms: linux/amd64,linux/arm64,linux/arm/v7
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Push Docker image
run: |
docker push ghcr.io/${{ github.repository_owner }}/jellyfin-discord-music-bot:${GITHUB_SHA}-${{ matrix.arch }}
docker push ghcr.io/${{ github.repository_owner }}/jellyfin-discord-music-bot:latest

View File

@ -3,6 +3,10 @@ RUN apk add ffmpeg
COPY . /app
WORKDIR /app
RUN yarn install --production
RUN yarn install --immutable
RUN yarn build
CMD yarn start:prod
RUN ls -lha
RUN ls dist -lha
CMD ["yarn", "start:prod"]