Phil
Phil

Reputation: 50466

How to find the Docker alpine version for a golang tag?

I have a Dockerfile with

FROM golang:1.17.3-alpine as builder

How to find out what version of alpine this is?

Upvotes: 1

Views: 755

Answers (1)

frippe
frippe

Reputation: 1390

One way to do it:

docker run --rm golang:1.17.3-alpine cat /etc/os-release

Upvotes: 3

Related Questions