mirror of
https://github.com/sobolevn/git-secret
synced 2024-10-31 21:20:29 +00:00
24 lines
648 B
Docker
24 lines
648 B
Docker
ARG bashver=latest
|
|
|
|
FROM bash:${bashver}
|
|
ARG TINI_VERSION=v0.19.0
|
|
ARG TARGETPLATFORM
|
|
|
|
COPY ./docker /tmp/docker
|
|
# default to amd64 when not running in buildx environment that provides target platform
|
|
RUN /tmp/docker/install_tini.sh "${TARGETPLATFORM-linux/amd64}"
|
|
|
|
|
|
# Install parallel and accept the citation notice (we aren't using this in a
|
|
# context where it make sense to cite GNU Parallel).
|
|
RUN apk add --no-cache parallel ncurses && \
|
|
mkdir -p ~/.parallel && touch ~/.parallel/will-cite
|
|
|
|
RUN ln -s /opt/bats/bin/bats /usr/local/bin/bats
|
|
COPY . /opt/bats/
|
|
|
|
RUN mkdir -p /code
|
|
WORKDIR /code/
|
|
|
|
ENTRYPOINT ["/tini", "--", "bash", "bats"]
|