Skip to content
Merged
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
17 changes: 16 additions & 1 deletion .github/docker_images/aws-lc/ubuntu/Dockerfile.2404
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ apt-get -y --no-install-recommends install \
cmake \
curl \
git \
libffi-dev \
libgmp-dev \
libssl-dev \
libunwind-dev \
libyaml-dev \
lld \
llvm \
llvm-dev \
Expand All @@ -27,7 +31,8 @@ apt-get -y --no-install-recommends install \
pkg-config \
software-properties-common \
unzip \
wget
wget \
zlib1g-dev
apt-get autoremove --purge -y
apt-get clean
apt-get autoclean
Expand Down Expand Up @@ -63,4 +68,14 @@ setup_script="/tmp/setup-go-compiler.sh"
${setup_script}
EOF

# Install Ruby
ENV RBENV_ROOT="/.rbenv"
ENV PATH="${RBENV_ROOT}/shims:${RBENV_ROOT}/bin:$PATH"

COPY --from=scripts setup-ruby.sh /tmp
RUN <<EOF
setup_script="/tmp/setup-ruby.sh"
${setup_script}
EOF

RUN rm -rf /tmp/*
2 changes: 1 addition & 1 deletion .github/workflows/integration_omnibus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ jobs:
- uses: ./.github/actions/codebuild-docker-run
name: Run Container
with:
image: ${{ steps.login-ecr.outputs.registry }}/aws-lc/ubuntu:22.04
image: ${{ steps.login-ecr.outputs.registry }}/aws-lc/ubuntu:24.04
env: |
FIPS
ipv6: true
Expand Down
Loading
Loading