# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 OR ISC FROM ubuntu-20.04:clang-7x SHELL ["/bin/bash", "-c"] RUN set -ex && \ apt-get update && \ apt-get -y --no-install-recommends upgrade && \ apt-get -y --no-install-recommends install \ python3.8 \ python3-pip \ make && \ pip install pandas==1.2.5 && \ pip install numpy==1.21.0 && \ pip install boto3==1.18.11 && \ apt-get autoremove --purge -y && \ apt-get clean && \ apt-get autoclean && \ rm -rf /var/lib/apt/lists/* && \ rm -rf /tmp/*