diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 35127ec..536c080 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -35,19 +35,24 @@ jobs: containerise: runs-on: ubuntu-latest steps: - - name: Set up QEMU - uses: docker/setup-qemu-action@v1 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 - - name: Log into GitHub Container Registry - run: echo "${{ secrets.REGISTRY_ACCESS_TOKEN }}" | docker login https://ghcr.io -u ${{ github.actor }} --password-stdin - - name: Build and push - uses: docker/build-push-action@v2 - with: - platforms: linux/amd64 - push: true - tags: ghcr.io/meeb/${{ env.IMAGE_NAME }}:latest - cache-from: type=registry,ref=ghcr.io/meeb/${{ env.IMAGE_NAME }}:latest - cache-to: type=inline - build-args: | - IMAGE_NAME=${{ env.IMAGE_NAME }} + - name: Set up QEMU + uses: docker/setup-qemu-action@v1 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v1 + - name: Log into GitHub Container Registry + run: echo "${{ secrets.REGISTRY_ACCESS_TOKEN }}" | docker login https://ghcr.io -u ${{ github.actor }} --password-stdin + - name: Lowercase github username for ghcr + id: string + uses: ASzc/change-string-case-action@v1 + with: + string: ${{ github.actor }} + - name: Build and push + uses: docker/build-push-action@v2 + with: + platforms: linux/amd64,linux/arm64 + push: true + tags: ghcr.io/${{ steps.string.outputs.lowercase }}/${{ env.IMAGE_NAME }}:latest + cache-from: type=registry,ref=ghcr.io/${{ steps.string.outputs.lowercase }}/${{ env.IMAGE_NAME }}:latest + cache-to: type=inline + build-args: | + IMAGE_NAME=${{ env.IMAGE_NAME }} diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a385d01..9e2992d 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -11,23 +11,28 @@ jobs: containerise: runs-on: ubuntu-latest steps: - - name: Set up QEMU - uses: docker/setup-qemu-action@v1 - - name: Get tag - id: tag - uses: dawidd6/action-get-tag@v1 - - uses: docker/build-push-action@v2 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 - - name: Log into GitHub Container Registry - run: echo "${{ secrets.REGISTRY_ACCESS_TOKEN }}" | docker login https://ghcr.io -u ${{ github.actor }} --password-stdin - - name: Build and push - uses: docker/build-push-action@v2 - with: - platforms: linux/amd64 - push: true - tags: ghcr.io/meeb/${{ env.IMAGE_NAME }}:${{ steps.tag.outputs.tag }} - cache-from: type=registry,ref=ghcr.io/meeb/${{ env.IMAGE_NAME }}:${{ steps.tag.outputs.tag }} - cache-to: type=inline - build-args: | - IMAGE_NAME=${{ env.IMAGE_NAME }} + - name: Set up QEMU + uses: docker/setup-qemu-action@v1 + - name: Get tag + id: tag + uses: dawidd6/action-get-tag@v1 + - uses: docker/build-push-action@v2 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v1 + - name: Log into GitHub Container Registry + run: echo "${{ secrets.REGISTRY_ACCESS_TOKEN }}" | docker login https://ghcr.io -u ${{ github.actor }} --password-stdin + - name: Lowercase github username for ghcr + id: string + uses: ASzc/change-string-case-action@v1 + with: + string: ${{ github.actor }} + - name: Build and push + uses: docker/build-push-action@v2 + with: + platforms: linux/amd64,linux/arm64 + push: true + tags: ghcr.io/${{ steps.string.outputs.lowercase }}/${{ env.IMAGE_NAME }}:${{ steps.tag.outputs.tag }} + cache-from: type=registry,ref=ghcr.io/${{ steps.string.outputs.lowercase }}/${{ env.IMAGE_NAME }}:${{ steps.tag.outputs.tag }} + cache-to: type=inline + build-args: | + IMAGE_NAME=${{ env.IMAGE_NAME }} diff --git a/Dockerfile b/Dockerfile index 4d0b380..8c119fe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,39 +1,52 @@ FROM debian:bullseye-slim -ARG ARCH="amd64" +ARG TARGETPLATFORM ARG S6_VERSION="2.2.0.3" ENV DEBIAN_FRONTEND="noninteractive" \ - HOME="/root" \ - LANGUAGE="en_US.UTF-8" \ - LANG="en_US.UTF-8" \ - LC_ALL="en_US.UTF-8" \ - TERM="xterm" \ - S6_EXPECTED_SHA256="a7076cf205b331e9f8479bbb09d9df77dbb5cd8f7d12e9b74920902e0c16dd98" \ - S6_DOWNLOAD="https://github.com/just-containers/s6-overlay/releases/download/v${S6_VERSION}/s6-overlay-${ARCH}.tar.gz" - + HOME="/root" \ + LANGUAGE="en_US.UTF-8" \ + LANG="en_US.UTF-8" \ + LC_ALL="en_US.UTF-8" \ + TERM="xterm" # Install third party software -RUN set -x && \ - apt-get update && \ - apt-get -y --no-install-recommends install locales && \ - echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && \ - locale-gen en_US.UTF-8 && \ - # Install required distro packages - apt-get -y --no-install-recommends install curl ca-certificates binutils && \ - # Install s6 - curl -L ${S6_DOWNLOAD} --output /tmp/s6-overlay-${ARCH}.tar.gz && \ - sha256sum /tmp/s6-overlay-${ARCH}.tar.gz && \ - echo "${S6_EXPECTED_SHA256} /tmp/s6-overlay-${ARCH}.tar.gz" | sha256sum -c - && \ - tar xzf /tmp/s6-overlay-${ARCH}.tar.gz -C / && \ - # Clean up - rm -rf /tmp/s6-overlay-${ARCH}.tar.gz && \ - apt-get -y autoremove --purge curl binutils +RUN export ARCH=$(case ${TARGETPLATFORM:-linux/amd64} in \ + "linux/amd64") echo "amd64" ;; \ + "linux/arm64") echo "aarch64" ;; \ + *) echo "" ;; esac) && \ + export S6_EXPECTED_SHA256=$(case ${TARGETPLATFORM:-linux/amd64} in \ + "linux/amd64") echo "a7076cf205b331e9f8479bbb09d9df77dbb5cd8f7d12e9b74920902e0c16dd98" ;; \ + "linux/arm64") echo "84f585a100b610124bb80e441ef2dc2d68ac2c345fd393d75a6293e0951ccfc5" ;; \ + *) echo "" ;; esac) && \ + export S6_DOWNLOAD=$(case ${TARGETPLATFORM:-linux/amd64} in \ + "linux/amd64") echo "https://github.com/just-containers/s6-overlay/releases/download/v${S6_VERSION}/s6-overlay-amd64.tar.gz" ;; \ + "linux/arm64") echo "https://github.com/just-containers/s6-overlay/releases/download/v${S6_VERSION}/s6-overlay-aarch64.tar.gz" ;; \ + *) echo "" ;; esac) && \ + echo "Building for arch: ${ARCH}|${ARCH44}, downloading S6 from: ${S6_DOWNLOAD}}, expecting S6 SHA256: ${S6_EXPECTED_SHA256}" && \ + set -x && \ + apt-get update && \ + apt-get -y --no-install-recommends install locales && \ + echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && \ + locale-gen en_US.UTF-8 && \ + # Install required distro packages + apt-get -y --no-install-recommends install curl ca-certificates binutils && \ + # Install s6 + curl -L ${S6_DOWNLOAD} --output /tmp/s6-overlay-${ARCH}.tar.gz && \ + sha256sum /tmp/s6-overlay-${ARCH}.tar.gz && \ + echo "${S6_EXPECTED_SHA256} /tmp/s6-overlay-${ARCH}.tar.gz" | sha256sum -c - && \ + tar xzf /tmp/s6-overlay-${ARCH}.tar.gz -C / && \ + # Clean up + rm -rf /tmp/s6-overlay-${ARCH}.tar.gz && \ + apt-get -y autoremove --purge curl binutils # Copy app COPY tubesync /app COPY tubesync/tubesync/local_settings.py.container /app/tubesync/local_settings.py +# Copy over pip.conf to use piwheels +COPY pip.conf /etc/pip.conf + # Add Pipfile COPY Pipfile /app/Pipfile COPY Pipfile.lock /app/Pipfile.lock @@ -47,24 +60,25 @@ RUN set -x && \ # Install required distro packages apt-get -y install nginx-light && \ apt-get -y --no-install-recommends install \ - python3 \ - python3-setuptools \ - python3-pip \ - python3-dev \ - gcc \ - make \ - default-libmysqlclient-dev \ - libmariadb3 \ - postgresql-common \ - libpq-dev \ - libpq5 \ - libjpeg62-turbo \ - libwebp6 \ - libjpeg-dev \ - zlib1g-dev \ - libwebp-dev \ - ffmpeg \ - redis-server && \ + python3 \ + python3-setuptools \ + python3-pip \ + python3-dev \ + gcc \ + g++ \ + make \ + default-libmysqlclient-dev \ + libmariadb3 \ + postgresql-common \ + libpq-dev \ + libpq5 \ + libjpeg62-turbo \ + libwebp6 \ + libjpeg-dev \ + zlib1g-dev \ + libwebp-dev \ + ffmpeg \ + redis-server && \ # Install pipenv pip3 --disable-pip-version-check install wheel pipenv && \ # Create a 'app' user which the application will run as @@ -88,16 +102,17 @@ RUN set -x && \ pipenv --clear && \ pip3 --disable-pip-version-check uninstall -y pipenv wheel virtualenv && \ apt-get -y autoremove --purge \ - python3-pip \ - python3-dev \ - gcc \ - make \ - default-libmysqlclient-dev \ - postgresql-common \ - libpq-dev \ - libjpeg-dev \ - zlib1g-dev \ - libwebp-dev && \ + python3-pip \ + python3-dev \ + gcc \ + g++ \ + make \ + default-libmysqlclient-dev \ + postgresql-common \ + libpq-dev \ + libjpeg-dev \ + zlib1g-dev \ + libwebp-dev && \ apt-get -y autoremove && \ apt-get -y autoclean && \ rm -rf /var/lib/apt/lists/* && \ diff --git a/pip.conf b/pip.conf new file mode 100644 index 0000000..e92bae1 --- /dev/null +++ b/pip.conf @@ -0,0 +1,2 @@ +[global] +extra-index-url=https://www.piwheels.org/simple