This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | |
| # SPDX-License-Identifier: MIT-0 | |
| import json | |
| import boto3 | |
| import zipfile | |
| import urllib as urllib2 | |
| import io | |
| import os | |
| import time |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3.8' | |
| services: | |
| glue: | |
| image: amazon/aws-glue-libs:glue_libs_1.0.0_image_01 | |
| build: | |
| context: . | |
| stdin_open: true # docker run -i | |
| tty: true # docker run -t | |
| ports: | |
| - 8888:8888 |
NewerOlder