Compare commits
2 commits
d26acf9ee0
...
26a7d7a72a
Author | SHA1 | Date | |
---|---|---|---|
26a7d7a72a | |||
41858d6c59 |
2 changed files with 1 additions and 7 deletions
|
@ -13,9 +13,5 @@ jobs:
|
|||
steps:
|
||||
- name: Checkout
|
||||
uses: https://git.shadowhosting.xyz/actions/checkout@v4
|
||||
- uses: https://git.shadowhosting.xyz/actions/setup-go@v5
|
||||
with:
|
||||
go-version: '1.22'
|
||||
- run: go mod download
|
||||
- name: Run Gosec Security Scanner
|
||||
uses: https://git.shadowhosting.xyz/actions/goscan@main
|
|
@ -8,9 +8,7 @@ RUN CGO_ENABLED=0 go build -ldflags="-s -w" -trimpath -o build/goscan
|
|||
|
||||
FROM alpine:3.20
|
||||
|
||||
RUN apk --no-cache update && apk --no-cache upgrade && apk add wget curl
|
||||
RUN wget https://go.dev/dl/go1.23.1.linux-amd64.tar.gz && tar -xf go1.23.1.linux-amd64.tar.gz -C /usr/local && rm -rf go1.23.1.linux-amd64.tar.gz
|
||||
|
||||
COPY --from=builder /usr/local/go /usr/local/go
|
||||
COPY --from=builder /app/build/goscan /goscan
|
||||
COPY ./entrypoint.sh /entrypoint.sh
|
||||
RUN chmod +x /goscan && chmod +x /entrypoint.sh
|
||||
|
|
Loading…
Reference in a new issue