opentofu/Dockerfile
Christian Mesh 3e2042db28
Re-add ssh and bash to Dockerfile (#1034)
Signed-off-by: Christian Mesh <christianmesh1@gmail.com>
2023-12-18 15:53:17 -05:00

13 lines
252 B
Docker

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0
FROM alpine:3.18
LABEL maintainer="OpenTofu Core Team <core@opentofu.org>"
RUN apk add --no-cache git bash openssh
COPY tofu /usr/local/bin/tofu
ENTRYPOINT ["/usr/local/bin/tofu"]