diff --git a/.woodpecker/build.yaml b/.woodpecker/build.yaml index f4b970a..cbfcaca 100644 --- a/.woodpecker/build.yaml +++ b/.woodpecker/build.yaml @@ -1,10 +1,9 @@ steps: # Step 1: Build the project - name: Build - image: debian:stable-slim + image: alpine commands: - - apt-get update - - apt-get install -y gcc + - apk add --no-cache g++ libc-dev - mkdir build - echo "Building project..." - g++ -o build/main main.cpp