Skip to content

Commit

Permalink
[GitHub Actions] Updated actions:
Browse files Browse the repository at this point in the history
- `docker/setup-qemu-action@v3`
- `docker/setup-buildx-action@v3`
- `docker/build-push-action@v5`
[Dockerfile] Added `apt -y dist-upgrade`
  • Loading branch information
ricardo-overhaul committed Sep 27, 2023
1 parent 9820c1c commit 33a56eb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,16 @@ jobs:
role-duration-seconds: 900 # Member must have value greater than or equal to 900
aws-region: us-east-1
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
- name: Login to Amazon ECR Public
id: login-ecr-public
uses: aws-actions/amazon-ecr-login@v1
with:
registry-type: 'public'
- name: Build and push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
push: true
tags: |
Expand Down
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ FROM ubuntu:jammy-20230816
ENV DEBIAN_FRONTEND=noninteractive

RUN apt update \
&& apt -y dist-upgrade \
&& apt install -y build-essential procps curl file git adduser byacc \
&& mkdir -p ${HOME}/bash \
&& cd ${HOME}/bash \
Expand Down

0 comments on commit 33a56eb

Please sign in to comment.