Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade AWS CPP SDK from 1.8.177 to a newer version #526

Closed
wants to merge 1 commit into from
Closed
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
4 changes: 2 additions & 2 deletions build-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ UBUNTU_RELEASE="20.04"
EMP_TOOL_RELEASE="0.2.3"
EMP_RELEASE="0.2.2"
EMP_IMAGE_TAG="0.2.3-haswell"
AWS_RELEASE="1.8.177"
AWS_IMAGE_TAG="1.8.177-haswell"
AWS_RELEASE="1.9.379"
AWS_IMAGE_TAG="1.9.379-haswell"
GCP_RELEASE="v1.32.1"
FMT_RELEASE="7.1.3"
FOLLY_RELEASE="2021.06.28.00"
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

ARG os_release="latest"
ARG emp_image="fbpcf/ubuntu-emp:0.2.3"
ARG aws_image="fbpcf/ubuntu-aws-s3-core:1.8.177"
ARG aws_image="fbpcf/ubuntu-aws-s3-core:1.9.379"
ARG folly_image="fbpcf/ubuntu-folly:2021.03.29.00"
ARG gcp_image="fbpcf/ubuntu-gcp-cloud-cpp:1.32.1"

Expand Down
4 changes: 2 additions & 2 deletions docker/aws-s3-core/Dockerfile.ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# LICENSE file in the root directory of this source tree.
ARG os_release="latest"
FROM ubuntu:${os_release} AS builder
ARG aws_release="1.8.177"
ARG aws_release="1.9.379"
# Required Packages for AWS
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get -y update && apt-get install --no-install-recommends -y \
Expand All @@ -21,7 +21,7 @@ WORKDIR /root/build
COPY docker/utils/get_make_options.sh .

# aws s3/core build and install
RUN git clone https://github.com/aws/aws-sdk-cpp.git
RUN git clone --recurse-submodules https://github.com/aws/aws-sdk-cpp.git
WORKDIR /root/build/aws-sdk-cpp
RUN git checkout tags/${aws_release} -b ${aws_release}
# -DCUSTOM_MEMORY_MANAGEMENT=0 is added to avoid Aws::String and std::string issue
Expand Down