Skip to content

Commit a953b2a

Browse files
author
Bennett Goble
committed
support ARCH arg
1 parent ef97df2 commit a953b2a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
test:
11-
runs-on: [self-hosted]
11+
runs-on: [self-hosted, linux, x64]
1212
steps:
1313
- uses: actions/checkout@v2
1414
- name: Run tests

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
############
22
# Base
33
############
4-
FROM artifactory.secondlife.io/dockerhub/alpine:3 AS base
4+
ARG ARCH=
5+
FROM artifactory.secondlife.io/dockerhub/${ARCH}alpine:3 AS base
56
RUN apk add --no-cache \
67
bash \
78
nginx \

0 commit comments

Comments
 (0)