Skip to content

Commit

Permalink
replace yum with dnf
Browse files Browse the repository at this point in the history
  • Loading branch information
keithrozario committed Dec 26, 2023
1 parent 38fe099 commit 48672b3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion pipeline/container_images/build_images/p312_arm64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ COPY build.py ./
RUN pip install --upgrade pip
RUN pip install boto3
RUN pip install aws-lambda-powertools
RUN yum install -y python-devel
RUN dnf update
RUN dnf install -y python-devel

CMD ["build.main"]
3 changes: 2 additions & 1 deletion pipeline/container_images/build_images/p312_x86/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ COPY build.py ./
RUN pip install --upgrade pip
RUN pip install boto3
RUN pip install aws-lambda-powertools
RUN yum install -y python-devel
RUN dnf update
RUN dnf install -y python-devel

CMD ["build.main"]

0 comments on commit 48672b3

Please sign in to comment.