Skip to content

Commit 993e203

Browse files
committed
Ensuring images are always built for linux/amd64
1 parent 6c85357 commit 993e203

File tree

14 files changed

+14
-14
lines changed

14 files changed

+14
-14
lines changed

base/Dockerfile

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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)