fix alpine name

This commit is contained in:
Devin Buhl 2021-03-13 11:45:39 -05:00
parent 55e9351591
commit 1f52899b1c
No known key found for this signature in database
GPG Key ID: 77149AC618D714D6
4 changed files with 3 additions and 15 deletions

View File

@ -4,4 +4,3 @@
Dockerfile
LICENSE
README.md
k8s/

View File

@ -46,18 +46,7 @@ jobs:
username: ${{ secrets.GHCR_USERNAME }}
password: ${{ secrets.GHCR_TOKEN }}
- name: Build and Push (PR)
if: github.event_name == 'pull_request'
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
platforms: linux/amd64,linux/arm/v7,linux/arm64
push: false # GitHub secrets not available in PRs
tags: |
ghcr.io/${{ github.repository_owner }}/pull-request:${{github.event.number}}
- name: Build and Push (master branch)
- name: Build and Push
if: github.event_name != 'pull_request'
uses: docker/build-push-action@v2
with:

View File

@ -42,7 +42,7 @@ jobs:
username: ${{ secrets.GHCR_USERNAME }}
password: ${{ secrets.GHCR_TOKEN }}
- name: Build and Push (release)
- name: Build and Push
if: github.event_name != 'pull_request'
uses: docker/build-push-action@v2
with:

View File

@ -20,7 +20,7 @@ RUN \
&& \
chmod +x exportarr
FROM apline:3.13
FROM alpine:3.13
ENV PORT="9707"
RUN \