diff --git a/.github/workflows/build_and_push_docker_image.yml b/.github/workflows/build_and_push_docker_image.yml index 21eb0b3..f36a244 100644 --- a/.github/workflows/build_and_push_docker_image.yml +++ b/.github/workflows/build_and_push_docker_image.yml @@ -33,11 +33,10 @@ jobs: with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - name: Build and push Docker image - id: push uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4 with: context: . push: true - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ github.event.release.tag_name }} + tags: ${{ github.event.release.tag_name }} + labels: ${{ steps.meta.outputs.labels }} file: actionfiles/build_and_push_docker_image/Dockerfile diff --git a/Dockerfile b/Dockerfile index 67fa9ec..972cf02 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM inblockio/mediawiki:37php74 +FROM mediawiki:lts # Define the MW_ROOT in MediaWiki as a variable name. ENV MW_ROOT /var/www/html