mirror of
https://github.com/ovh/the-bastion.git
synced 2024-12-27 01:56:24 +08:00
11 lines
413 B
Text
11 lines
413 B
Text
FROM debian:bookworm
|
|
LABEL maintainer="stephane.lesimple+bastion@ovhcloud.com"
|
|
|
|
# install prerequisites
|
|
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y jq netcat-traditional openssh-client procps bsdutils screen expect shellcheck libperl-critic-perl fping curl rsync
|
|
|
|
# add our code
|
|
COPY . /opt/bastion
|
|
|
|
# start at entrypoint
|
|
ENTRYPOINT /opt/bastion/tests/functional/docker/tester_role.sh
|