diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2d1d700..9e3b8c4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,36 +18,31 @@ jobs: with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - - name: :ubuntu - uses: docker/build-push-action@v6 + - uses: docker/build-push-action@v6 with: push: true platforms: linux/amd64,linux/arm64 file: ./Dockerfile tags: ${{ steps.meta.outputs.tags }} - - name: ubuntu-20 - uses: docker/build-push-action@v6 + - uses: docker/build-push-action@v6 with: push: true platforms: linux/amd64,linux/arm64 file: ./ubuntu-20/Dockerfile tags: sstc/headful-chromium:ubuntu-20 - - name: ubuntu-22 - uses: docker/build-push-action@v6 + - uses: docker/build-push-action@v6 with: push: true platforms: linux/amd64,linux/arm64 file: ./ubuntu-22/Dockerfile tags: sstc/headful-chromium:ubuntu-22 - - name: :debian-11 - uses: docker/build-push-action@v6 + - uses: docker/build-push-action@v6 with: push: true platforms: linux/amd64,linux/arm64 file: ./debian-11/Dockerfile tags: sstc/headful-chromium:debian-11 - - name: :debian-12 - uses: docker/build-push-action@v6 + - uses: docker/build-push-action@v6 with: push: true platforms: linux/amd64,linux/arm64 diff --git a/Dockerfile b/Dockerfile index 69d4fba..764a221 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,13 +3,13 @@ # ubuntu version: https://releases.ubuntu.com/ FROM mcr.microsoft.com/playwright:v1.45.0-noble -RUN set -ex; \ - apt-get update; \ - DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \ - npm \ - ; \ - apt-get clean; \ - rm -rf /var/lib/apt/lists/* +# RUN set -ex; \ +# apt-get update; \ +# DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \ +# npm \ +# ; \ +# apt-get clean; \ +# rm -rf /var/lib/apt/lists/* # Essentials for scripts ENV NODE_PATH=/usr/lib/node_modules diff --git a/ubuntu-20/Dockerfile b/ubuntu-20/Dockerfile index 23c11bc..6249892 100644 --- a/ubuntu-20/Dockerfile +++ b/ubuntu-20/Dockerfile @@ -3,13 +3,13 @@ # ubuntu version: https://releases.ubuntu.com/ FROM mcr.microsoft.com/playwright:v1.45.0-focal -RUN set -ex; \ - apt-get update; \ - DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \ - npm \ - ; \ - apt-get clean; \ - rm -rf /var/lib/apt/lists/* +# RUN set -ex; \ +# apt-get update; \ +# DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \ +# npm \ +# ; \ +# apt-get clean; \ +# rm -rf /var/lib/apt/lists/* # Essentials for scripts ENV NODE_PATH=/usr/lib/node_modules diff --git a/ubuntu-22/Dockerfile b/ubuntu-22/Dockerfile index ca74331..1b2dcf5 100644 --- a/ubuntu-22/Dockerfile +++ b/ubuntu-22/Dockerfile @@ -3,13 +3,13 @@ # ubuntu version: https://releases.ubuntu.com/ FROM mcr.microsoft.com/playwright:v1.45.0-jammy -RUN set -ex; \ - apt-get update; \ - DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \ - npm \ - ; \ - apt-get clean; \ - rm -rf /var/lib/apt/lists/* +# RUN set -ex; \ +# apt-get update; \ +# DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \ +# npm \ +# ; \ +# apt-get clean; \ +# rm -rf /var/lib/apt/lists/* # Essentials for scripts ENV NODE_PATH=/usr/lib/node_modules