mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-02 02:01:05 -05:00
15 lines
329 B
Docker
15 lines
329 B
Docker
# Copyright (c) The OpenTofu Authors
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
# Copyright (c) 2023 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"]
|