s3grouper.dockerfile 669 B

123456789101112131415161718
  1. ##
  2. ## Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
  3. ##
  4. ## Licensed under the Amazon Software License (the "License"). You may not use this
  5. ## file except in compliance with the License. A copy of the License is located at
  6. ##
  7. ## http://aws.amazon.com/asl/
  8. ##
  9. ## or in the "license" file accompanying this file. This file is distributed on an
  10. ## "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, express or implied.
  11. ## See the License for the specific language governing permissions and limitations
  12. ## under the License.
  13. ##
  14. FROM python:3-alpine
  15. RUN pip3 install boto3
  16. COPY s3grouper.py /
  17. ENTRYPOINT [ "python", "/s3grouper.py" ]