fork of indigo with slightly nicer lexgen
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix sonar container build

+2 -2
+2 -2
cmd/sonar/Dockerfile
··· 21 FROM scratch 22 23 # Import the SSL certificates from the first stage. 24 - COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt 25 26 # Copy the binary from the first stage. 27 - COPY --from=builder /sonar /sonar 28 29 # Set the startup command to run the binary 30 CMD ["/sonar"]
··· 21 FROM scratch 22 23 # Import the SSL certificates from the first stage. 24 + COPY --from=build-env /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt 25 26 # Copy the binary from the first stage. 27 + COPY --from=build-env /sonar /sonar 28 29 # Set the startup command to run the binary 30 CMD ["/sonar"]