opentofu/Dockerfile
Andrey Tataranovich 48e9443cb5
Provide git for module installation (#751)
Signed-off-by: Andrey Tataranovich <tataranovich@gmail.com>
2023-10-19 16:16:55 +02:00

13 lines
239 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
COPY tofu /usr/local/bin/tofu
ENTRYPOINT ["/usr/local/bin/tofu"]