기본 구조
yum install -y jq
yum install -y curl
sudo yum update -y
sudo yum install httpd - y
sudo systemctl start httpd
sudo systemctl enable httpd
mkdir -p /var/www/html/index.html
echo "(문자열)" > /var/www/html/index.html / var/www/html 이라는 경로 안에 있는
index.html(Apache 화면에 띄울 파일)의
전에 있던 내용을 삭제하고 내가 원하는 문자열을 넣어준다.
AWSCLIv2라는 이름으로 zip파일을 다운로드합니다.
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
AWSCLIv2 압축을 풀어줍니다.
unzip awscliv2.zip
압축 해제한 파일을 실행시켜줍니다.
sudo ./aws/install
/usr/local/bin의 directory경로에서 aws 파일을 /usr/bin에 옮깁니다.
mv /usr/local/bin/aws /usr/bin
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
unzip awscliv2.zip
sudo ./aws/install
ln -s /usr/local/bin/aws /usr/bin/
ln -s /usr/local/bin/aws_completer /usr/bin/
dockerfile에서는 yum 대신 apt를 사용합니다
ex) RUN apt update -y
RUN apt install -y curl
RUN apt install -y python3-pip