Skip to content

Commit

Permalink
chore(deps): update golang docker tag to v1.19.3 (#10)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Nov 23, 2022
1 parent afbd890 commit ebea7c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# syntax=docker/dockerfile:1

# Build stage
FROM golang:1.19.2-alpine as build
FROM golang:1.19.3-alpine as build

WORKDIR /build/kani
COPY . .

RUN GOOS=$(go env GOOS) GOARCH=$(go env GOARCH) go build ./cmd/kani

# Run stage
FROM golang:1.19.2-alpine
FROM golang:1.19.3-alpine

RUN adduser -D kani
USER kani
Expand Down

0 comments on commit ebea7c1

Please sign in to comment.