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

Time:03-29

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
  • Related