We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb43dee commit a189cd0Copy full SHA for a189cd0
Dockerfile
@@ -1,7 +1,7 @@
1
# Dockerfile for Go Driver local development.
2
3
# Build libmongocrypt in a separate build stage.
4
-FROM golang:1.25.5-trixie AS libmongocrypt
+FROM --platform=linux/amd64 golang:1.25.5-trixie AS libmongocrypt
5
6
RUN apt-get -qq update && \
7
apt-get -qqy install --no-install-recommends \
@@ -21,7 +21,7 @@ RUN cd /root && bash ./install-libmongocrypt.sh
21
22
23
# Final dev image (already has Go 1.25.x).
24
-FROM golang:1.25.5-trixie
+FROM --platform=linux/amd64 golang:1.25.5-trixie
25
26
RUN export DEBIAN_FRONTEND=noninteractive && \
27
export TZ=Etc/UTC && \
0 commit comments