'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?
Solution 1:[1]
One way to do it:
docker run --rm golang:1.17.3-alpine cat /etc/os-release
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | frippe |
