This brings over the initial buildx prototype from pulumi/pulumi-docker and fixes various build and release issues.
6 lines
236 B
Docker
6 lines
236 B
Docker
# syntax=docker/dockerfile:1.4
|
|
FROM golang:latest
|
|
|
|
RUN version="$(go version)" && echo $version && [ "$version" = "go version go1.21.7 linux/amd64" ]
|
|
RUN echo "This image uses named contexts to pin golang:latest to a specific SHA 👍"
|