Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Use a base image with the necessary dependencies
FROM ubuntu:20.04

# Install required packages
RUN apt-get update -y && apt-get install -y \
curl \
python3 \
python3-pip \
libyaml-dev \
git \
crudini \
python3-dev \
python3-setuptools \
libffi-dev \
unzip \
libssl-dev

# Upgrade pip and install Ansible
#RUN python3 -m pip install --upgrade --force-reinstall pip && pip3 install ansible

# Copy the entrypoint script
COPY entrypoint.sh /entrypoint.sh
COPY convert-upload-images-powervs /convert-upload-images-powervs

# Set the entrypoint script
ENTRYPOINT ["/entrypoint.sh"]
CMD ["bash"]
6 changes: 3 additions & 3 deletions infra-node/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ terraform {
required_providers {
ibm = {
source = "ibm-cloud/ibm"
version = "1.39.0"
version = "~> 1.54.0"
}
random = {
source = "hashicorp/random"
version = "~> 2.3"
version = "~> 3.4"
}
}
required_version = "~> 1.2.0"
required_version = ">= 1.2.0"
}