10 lines
141 B
Docker
10 lines
141 B
Docker
FROM alpine/git
|
|
|
|
RUN apk update
|
|
# For envsubst
|
|
RUN apk add gettext
|
|
|
|
ADD script.sh /bin
|
|
RUN chmod +x /bin/script.sh
|
|
ENTRYPOINT /bin/script.sh
|