Skip to content

Commit

Permalink
add pro version
Browse files Browse the repository at this point in the history
  • Loading branch information
Mon-ius committed Dec 3, 2024
1 parent 64a0aa0 commit 5e2914a
Show file tree
Hide file tree
Showing 5 changed files with 529 additions and 3 deletions.
62 changes: 62 additions & 0 deletions .github/workflows/build-pro.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: build-pro

on:
workflow_dispatch:
workflow_run:
workflows: ["build-deps"]
types:
- completed
push:
branches:
- "master"
paths:
- ".github/workflows/build-pro.yml"
- "pro/entrypoint.sh"
- "pro/Dockerfile"

jobs:
build-pro:
runs-on: ubuntu-latest
permissions:
packages: write
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Convert tags to lowercase
run: |
dockerhub_tag="${{ secrets.DOCKERHUB_USERNAME }}"
ghcr_tag="ghcr.io/${{ github.repository_owner }}"
echo "dockerhub_tag=${dockerhub_tag,,}" >> $GITHUB_ENV
echo "ghcr_tag=${ghcr_tag,,}" >> $GITHUB_ENV
-
name: Build and push file
uses: docker/build-push-action@v6
with:
context: "{{defaultContext}}:pro"
file: Dockerfile
push: true
platforms: linux/amd64, linux/arm64, linux/s390x, linux/riscv64, linux/arm
tags: |
${{ env.dockerhub_tag }}/docker-yarn-dev:pro
${{ env.ghcr_tag }}/docker-yarn-dev:pro
30 changes: 30 additions & 0 deletions pro/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
FROM monius/docker-yarn-dev:deps

LABEL maintainer="M0nius <[email protected]>" \
debian-version="12.8" \
org.opencontainers.image.title="Docker-Yarn-Dev" \
org.opencontainers.image.description="Modern develop environment, just in box!" \
org.opencontainers.image.authors="M0nius <[email protected]>" \
org.opencontainers.image.vendor="M0nius Tech" \
org.opencontainers.image.version="1.0.0" \
org.opencontainers.image.url="https://hub.docker.com/r/monius/docker-yarn-dev" \
org.opencontainers.image.source="https://github.com/Mon-ius/Docker-Yarn-Dev" \
org.opencontainers.image.base.name="docker.io/monius/docker-yarn-dev:pro"

ENV APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=DontWarn
ENV DEBIAN_FRONTEND=noninteractive
ENV TZ="Europe/London"
ENV PKG="openssh-server tmux vim zsh"

RUN apt-get -qq update \
&& apt-get -qq dist-upgrade -y \
&& apt-get -qq install $PKG \
&& apt-get -qq autoremove --purge \
&& apt-get -qq autoclean \
&& rm -rf /var/lib/apt/lists/* \
&& rm -rf /tmp/*

COPY entrypoint.sh /run/entrypoint.sh
ENTRYPOINT ["/run/entrypoint.sh"]

CMD ["dev-cli"]
Loading

0 comments on commit 5e2914a

Please sign in to comment.