Skip to content

Commit 471daf3

Browse files
authored
Merge pull request #65 from jk464/feature/explict-amd64
Explicitly force images be built for AMD64
2 parents 6c85357 + 993e203 commit 471daf3

File tree

14 files changed

+14
-14
lines changed

14 files changed

+14
-14
lines changed

base/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:focal
1+
FROM --platform=linux/amd64 ubuntu:focal
22

33
ARG DEBIAN_FRONTEND=noninteractive
44

st2actionrunner/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG ST2_VERSION
2-
FROM stackstorm/st2:${ST2_VERSION}
2+
FROM --platform=linux/amd64 stackstorm/st2:${ST2_VERSION}
33
LABEL com.stackstorm.component="st2actionrunner"
44

55
# Install utils used by st2 'linux' pack, part of StackStorm core

st2api/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG ST2_VERSION
2-
FROM stackstorm/st2:${ST2_VERSION}
2+
FROM --platform=linux/amd64 stackstorm/st2:${ST2_VERSION}
33
LABEL com.stackstorm.component="st2api"
44

55
USER st2

st2auth/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG ST2_VERSION
2-
FROM stackstorm/st2:${ST2_VERSION}
2+
FROM --platform=linux/amd64 stackstorm/st2:${ST2_VERSION}
33
LABEL com.stackstorm.component="st2auth"
44

55
USER st2

st2chatops/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:focal
1+
FROM --platform=linux/amd64 ubuntu:focal
22

33
ARG DEBIAN_FRONTEND=noninteractive
44

st2garbagecollector/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG ST2_VERSION
2-
FROM stackstorm/st2:${ST2_VERSION}
2+
FROM --platform=linux/amd64 stackstorm/st2:${ST2_VERSION}
33
LABEL com.stackstorm.component="st2garbagecollector"
44

55
USER st2

st2notifier/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG ST2_VERSION
2-
FROM stackstorm/st2:${ST2_VERSION}
2+
FROM --platform=linux/amd64 stackstorm/st2:${ST2_VERSION}
33
LABEL com.stackstorm.component="st2notifier"
44

55
USER st2

st2rulesengine/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG ST2_VERSION
2-
FROM stackstorm/st2:${ST2_VERSION}
2+
FROM --platform=linux/amd64 stackstorm/st2:${ST2_VERSION}
33
LABEL com.stackstorm.component="st2rulesengine"
44

55
USER st2

st2scheduler/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG ST2_VERSION
2-
FROM stackstorm/st2:${ST2_VERSION}
2+
FROM --platform=linux/amd64 stackstorm/st2:${ST2_VERSION}
33
LABEL com.stackstorm.component="st2scheduler"
44

55
USER st2

st2sensorcontainer/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG ST2_VERSION
2-
FROM stackstorm/st2:${ST2_VERSION}
2+
FROM --platform=linux/amd64 stackstorm/st2:${ST2_VERSION}
33
LABEL com.stackstorm.component="st2sensorcontainer"
44

55
USER st2

st2stream/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG ST2_VERSION
2-
FROM stackstorm/st2:${ST2_VERSION}
2+
FROM --platform=linux/amd64 stackstorm/st2:${ST2_VERSION}
33
LABEL com.stackstorm.component="st2stream"
44

55
USER st2

st2timersengine/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG ST2_VERSION
2-
FROM stackstorm/st2:${ST2_VERSION}
2+
FROM --platform=linux/amd64 stackstorm/st2:${ST2_VERSION}
33
LABEL com.stackstorm.component="st2timersengine"
44

55
USER st2

st2web/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:focal
1+
FROM --platform=linux/amd64 ubuntu:focal
22

33
ARG DEBIAN_FRONTEND=noninteractive
44

st2workflowengine/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG ST2_VERSION
2-
FROM stackstorm/st2:${ST2_VERSION}
2+
FROM --platform=linux/amd64 stackstorm/st2:${ST2_VERSION}
33
LABEL com.stackstorm.component="st2workflowengine"
44

55
USER st2

0 commit comments

Comments
 (0)