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.
2 parents 83062d1 + 5ad27ef commit d5f421aCopy full SHA for d5f421a
Dockerfile
@@ -40,7 +40,7 @@ RUN python -m build /src
40
#
41
42
# Utilities for downloading packages
43
-FROM ${BASE_IMAGE} as downloader
+FROM --platform=linux/amd64 ${BASE_IMAGE} as downloader
44
45
# Bump the date to current to refresh curl/certificates/etc
46
RUN echo "2023.11.09"
@@ -100,7 +100,7 @@ RUN /opt/conda/envs/sdcflows/bin/pip install --no-cache-dir -r /tmp/requirements
100
101
# Main stage
102
103
-FROM ${BASE_IMAGE} as sdcflows
+FROM --platform=linux/amd64 ${BASE_IMAGE} as sdcflows
104
105
# Configure apt
106
ENV DEBIAN_FRONTEND="noninteractive" \
0 commit comments