I have a Dockerfile with
FROM golang:1.17.3-alpine as builder
How to find out what version of alpine this is?
CodePudding user response:
One way to do it:
docker run --rm golang:1.17.3-alpine cat /etc/os-release
I have a Dockerfile with
FROM golang:1.17.3-alpine as builder
How to find out what version of alpine this is?
CodePudding user response:
One way to do it:
docker run --rm golang:1.17.3-alpine cat /etc/os-release