File tree 4 files changed +4
-8
lines changed
4 files changed +4
-8
lines changed Original file line number Diff line number Diff line change 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
6
2
7
3
COPY scripts/ /opt/resource/
8
4
RUN chmod +x /opt/resource/*
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
# vim: set ft=sh
3
3
4
- set -e
4
+ set -e -u
5
5
6
6
exec 3>&1 # make stdout available as fd 3 for the result
7
7
exec 1>&2 # redirect all output to stderr for logging
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
# vim: set ft=sh
3
3
4
- set -e
4
+ set -e -u
5
5
6
6
exec 3>&1 # make stdout available as fd 3 for the result
7
7
exec 1>&2 # redirect all output to stderr for logging
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
# vim: set ft=sh
3
3
4
- set -e
4
+ set -e -u
5
5
6
6
exec 3>&1 # make stdout available as fd 3 for the result
7
7
exec 1>&2 # redirect all output to stderr for logging
You can’t perform that action at this time.
0 commit comments