Skip to content

update

update #1

Workflow file for this run

name: Docker Alpine Linux Lightweight
on:
push:
branches: master
jobs:
build:
runs-on: ubuntu-latest
steps:

Check failure on line 10 in .github/workflows/image.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/image.yml

Invalid workflow file

You have an error in your yaml syntax on line 10
- name: checkout code
uses: actions/checkout@v2
- name: install buildx
id: buildx
uses: crazy-max/ghaction-docker-buildx@v1
with:
version: latest
- name: build the image
run: |
docker buildx build \
--platform=linux/arm64/v8,linux/amd64 \
--build-arg="ALPINE_VERSION=3.15" \
--build-arg="PHP_VERSION=7.4" \
--build-arg="PHP_NUMBER=7" \
--tag adityadarma/alpine-php-nginx:7.4 .