Skip to content

Commit

Permalink
fix: update base docker image in Dockerfile (#1522)
Browse files Browse the repository at this point in the history
google/osv-scanner-action#54

This PR updates the base docker image in Dockerfile to be
`golang:1.23.5-alpine3.21`.
  • Loading branch information
cuixq authored Jan 23, 2025
1 parent 905d53b commit 1ad4d20
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM golang:1.23.4-alpine3.19@sha256:5f3336882ad15d10ac1b59fbaba7cb84c35d4623774198b36ae60edeba45fd84 AS builder
FROM golang:1.23.5-alpine3.21@sha256:47d337594bd9e667d35514b241569f95fb6d95727c24b19468813d596d5ae596 AS builder

WORKDIR /src
COPY ./go.mod ./go.sum ./
Expand Down
2 changes: 1 addition & 1 deletion action.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM golang:1.23.4-alpine3.19@sha256:5f3336882ad15d10ac1b59fbaba7cb84c35d4623774198b36ae60edeba45fd84
FROM golang:1.23.5-alpine3.21@sha256:47d337594bd9e667d35514b241569f95fb6d95727c24b19468813d596d5ae596

RUN mkdir /src
WORKDIR /src
Expand Down

0 comments on commit 1ad4d20

Please sign in to comment.