From 8f2c57088d79ad4c90bcef84143dc0d99d46e6f9 Mon Sep 17 00:00:00 2001 From: LongYinan Date: Mon, 12 Apr 2021 11:00:04 +0800 Subject: [PATCH] ci: add debian docker image --- .github/workflows/docker.yaml | 15 ++++++++++++--- debian.Dockerfile | 16 ++++++++++++++++ 2 files changed, 28 insertions(+), 3 deletions(-) create mode 100644 debian.Dockerfile diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml index 9b3468f4..545e5531 100644 --- a/.github/workflows/docker.yaml +++ b/.github/workflows/docker.yaml @@ -1,8 +1,9 @@ name: Docker nightly build on: - schedule: - - cron: '0 1 * * *' + # schedule: + # - cron: '0 1 * * *' + push: jobs: build_image: @@ -25,10 +26,18 @@ jobs: username: ${{ secrets.GH_CONTAINER_UNAME }} password: ${{ secrets.GH_TOKEN }} - - name: Build and push + - name: Build and push alpine uses: docker/build-push-action@v2 with: file: alpine.Dockerfile platforms: linux/amd64,linux/arm64 push: true tags: ghcr.io/${{ github.repository }}/nodejs-rust:lts-alpine + + - name: Build and push debian + uses: docker/build-push-action@v2 + with: + file: debian.Dockerfile + platforms: linux/amd64,linux/arm64 + push: true + tags: ghcr.io/${{ github.repository }}/nodejs-rust:lts-debian diff --git a/debian.Dockerfile b/debian.Dockerfile new file mode 100644 index 00000000..0f7a949a --- /dev/null +++ b/debian.Dockerfile @@ -0,0 +1,16 @@ +FROM node:lts + +ENV RUSTUP_HOME=/usr/local/rustup \ + CARGO_HOME=/usr/local/cargo \ + PATH=/usr/local/cargo/bin:$PATH + +RUN wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - && \ + echo "deb http://apt.llvm.org/stretch/ llvm-toolchain-stretch main" >> /etc/apt/sources.list && \ + echo "deb-src http://apt.llvm.org/stretch/ llvm-toolchain-stretch main" >> /etc/apt/sources.list && \ + apt-get update && \ + apt-get install -y --fix-missing \ + llvm \ + clang \ + rcs \ + ninja-build && \ + curl https://sh.rustup.rs -sSf | sh -s -- -y