-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
529 additions
and
3 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 |
---|---|---|
@@ -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 |
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,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"] |
Oops, something went wrong.