imulab / go-scim

Building blocks for servers implementing Simple Cloud Identity Management v2
MIT License
145 stars 56 forks source link

compose missing linux_amd64/scim folder #92

Open mikeumus opened 2 years ago

mikeumus commented 2 years ago

make docker compose results in this error:

 => ERROR [stage-1 2/3] COPY --from=builder /build/scim/bin/linux_amd64/scim /usr/bin/scim           0.0s 
------                                                                                                    
 > [stage-1 2/3] COPY --from=builder /build/scim/bin/linux_amd64/scim /usr/bin/scim:                      
------                                                                                                    
failed to compute cache key: "/build/scim/bin/linux_amd64/scim" not found: not found
make: *** [docker] Error 1
mikeumus commented 2 years ago

@requaos @afedyk-sugarcrm @johejo @imulab any ideas? Thank you 🙇🏻‍♂️

imulab commented 2 years ago

Hi @requaos

Just ran make docker compose again, but couldn't reproduce your problem.

This looks like a docker related issue to me. It seems the make script fails on the "docker" stage where it builds the image.

Are you able to execute docker build -t tiga . on the project's root folder directly? If that fails, let's try docker build --no-cache -t tiga . and see what happens.