-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from cremuzzi/develop
Upgrade base image to alpine:3.20
- Loading branch information
Showing
5 changed files
with
82 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,32 @@ | ||
name: Container image build | ||
name: Buildah Build | ||
|
||
on: | ||
push: | ||
branches: | ||
- develop | ||
- master | ||
paths: | ||
- "Dockerfile" | ||
- "Containerfile" | ||
pull_request: | ||
branches: | ||
- master | ||
paths: | ||
- "Dockerfile" | ||
- "Containerfile" | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-22.04 | ||
name: Build image | ||
runs-on: ubuntu-24.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Build the container image | ||
run: docker build . -f ./Dockerfile -t mpv:$(date +%s) | ||
- uses: actions/checkout@v4 | ||
|
||
# https://github.com/redhat-actions/buildah-build | ||
- name: Buildah build | ||
id: build-image | ||
uses: redhat-actions/buildah-build@v2 | ||
with: | ||
image: mpv | ||
tags: latest ${{ github.ref_name }} | ||
containerfiles: | | ||
./Containerfile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,36 @@ | ||
name: Publish container image to Docker Hub | ||
name: Buildah Build and Push | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*' | ||
|
||
jobs: | ||
push_to_registry: | ||
name: Push Container image to Docker Hub | ||
runs-on: ubuntu-22.04 | ||
build_n_push: | ||
name: Build and push | ||
runs-on: ubuntu-24.04 | ||
|
||
steps: | ||
- name: Check out the repo | ||
uses: actions/checkout@v2 | ||
|
||
- name: Log in to Docker Hub | ||
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
|
||
- name: Extract metadata (tags, labels) for Docker | ||
id: meta | ||
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38 | ||
with: | ||
images: cremuzzi/mpv | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Build and push Docker image | ||
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc | ||
with: | ||
context: . | ||
labels: ${{ steps.meta.outputs.labels }} | ||
push: true | ||
tags: ${{ steps.meta.outputs.tags }} | ||
# https://github.com/redhat-actions/buildah-build | ||
- name: Buildah build | ||
id: build-image | ||
uses: redhat-actions/buildah-build@v2 | ||
with: | ||
image: mpv | ||
tags: latest ${{ github.ref_name }} | ||
containerfiles: | | ||
./Containerfile | ||
# https://github.com/redhat-actions/push-to-registry | ||
- name: Push To docker.io | ||
id: push-to-docker-io | ||
uses: redhat-actions/push-to-registry@v2 | ||
with: | ||
image: ${{ steps.build-image.outputs.image }} | ||
tags: ${{ steps.build-image.outputs.tags }} | ||
registry: docker.io/cremuzzi | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
FROM alpine:3.20 | ||
|
||
LABEL maintainer="Carlos Remuzzi <carlosremuzzi@gmail.com>" | ||
LABEL org.label-schema.description="Containerization of mpv.io" | ||
LABEL org.label-schema.name="mpv" | ||
LABEL org.label-schema.schema-version="1.0" | ||
LABEL org.label-schema.vcs-url="https://github.com/cremuzzi/docker-mpv" | ||
|
||
ARG YTDL_VERSION=2024.08.07 | ||
|
||
RUN apk add --no-cache \ | ||
ffmpeg \ | ||
mesa-dri-gallium \ | ||
mpv \ | ||
pulseaudio \ | ||
python3 \ | ||
ttf-dejavu \ | ||
&& wget https://github.com/ytdl-org/ytdl-nightly/releases/download/${YTDL_VERSION}/youtube-dl \ | ||
-O /usr/local/bin/youtube-dl \ | ||
&& chmod 0755 /usr/local/bin/youtube-dl \ | ||
&& echo "UP add volume +2" > /etc/mpv/input.conf \ | ||
&& echo "DOWN add volume -2" >> /etc/mpv/input.conf \ | ||
&& adduser -u 1000 -D mpv | ||
|
||
USER mpv | ||
|
||
WORKDIR /home/mpv/ | ||
|
||
CMD ["/bin/ash"] |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters