Skip to content

Commit 7087c3d

Browse files
author
Tobias Fuhrimann
committed
Use concourse/buildroot as base image
1 parent 4066139 commit 7087c3d

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

Dockerfile

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
FROM alpine:latest
2-
3-
RUN apk update
4-
RUN apk upgrade
5-
RUN apk add --no-cache bash curl git jq
1+
FROM concourse/buildroot:git
62

73
COPY scripts/ /opt/resource/
84
RUN chmod +x /opt/resource/*

scripts/check

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
# vim: set ft=sh
33

4-
set -e
4+
set -e -u
55

66
exec 3>&1 # make stdout available as fd 3 for the result
77
exec 1>&2 # redirect all output to stderr for logging

scripts/in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
# vim: set ft=sh
33

4-
set -e
4+
set -e -u
55

66
exec 3>&1 # make stdout available as fd 3 for the result
77
exec 1>&2 # redirect all output to stderr for logging

scripts/out

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
# vim: set ft=sh
33

4-
set -e
4+
set -e -u
55

66
exec 3>&1 # make stdout available as fd 3 for the result
77
exec 1>&2 # redirect all output to stderr for logging

0 commit comments

Comments
 (0)