Skip to content

Commit

Permalink
chore: use alpine:3.18 image.
Browse files Browse the repository at this point in the history
Signed-off-by: Federico Di Pierro <[email protected]>
  • Loading branch information
FedeDP authored and poiana committed Sep 1, 2023
1 parent 4f64195 commit c00878e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ version: 2.1
jobs:
"build-test":
docker:
- image: golang:1.20-alpine
- image: alpine:3.18
steps:
- checkout
- setup_remote_docker: # used by integration tests that runs driverkit binary that needs docker
version: 20.10.24
- run:
name: Install deps
command: apk add gcc musl-dev make bash git
command: apk add gcc musl-dev make bash git go
- run:
name: Build
command: make build
Expand Down Expand Up @@ -42,8 +42,8 @@ jobs:
- run:
name: Prepare project
command: |
docker run --rm -it -v /tmp/source:/source -v /var/run/docker.sock:/var/run/docker.sock -w /source --name alpine_sh -d golang:1.20-alpine sh
docker exec alpine_sh apk add gcc musl-dev make bash git docker
docker run --rm -it -v /tmp/source:/source -v /var/run/docker.sock:/var/run/docker.sock -w /source --name alpine_sh -d alpine:3.18 sh
docker exec alpine_sh apk add gcc musl-dev make bash git go docker
docker exec alpine_sh git config --global --add safe.directory /source
- run:
name: Build
Expand Down

0 comments on commit c00878e

Please sign in to comment.