diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 4dcd84c..d6fd40d 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -35,7 +35,6 @@ jobs: uses: docker/build-push-action@v3 with: context: ./ - platforms: linux/amd64,linux/arm64 file: ./docker/Dockerfile push: true tags: diff --git a/Dockerfile b/Dockerfile index dbccd9c..40490db 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,9 +23,9 @@ RUN docker-php-ext-install \ sockets RUN apk add --no-cache nginx -RUN cp docker/nginx/nginx.conf /etc/nginx/nginx.conf +RUN cp nginx/nginx.conf /etc/nginx/nginx.conf RUN [ -d /etc/nginx/conf.d ] || mkdir /etc/nginx/conf.d -RUN cp docker/nginx/default.conf /etc/nginx/conf.d/default.conf +RUN cp nginx/default.conf /etc/nginx/conf.d/default.conf RUN curl -s https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin/ --filename=composer