Reputation: 50466
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
Reputation: 1390
One way to do it:
docker run --rm golang:1.17.3-alpine cat /etc/os-release
Upvotes: 3