Skip to content

Instantly share code, notes, and snippets.

@kunday
Last active March 28, 2019 02:34
Show Gist options
  • Select an option

  • Save kunday/097678c7ab78ec82509259b1a0bc5cbb to your computer and use it in GitHub Desktop.

Select an option

Save kunday/097678c7ab78ec82509259b1a0bc5cbb to your computer and use it in GitHub Desktop.
Docker Compose to build AWS Lambda Python Locally
version: '3.7'
services:
debug:
image: lambci/lambda:python3.7
entrypoint: /bin/bash
volumes:
- .:/data
package:
image: lambci/lambda:python3.7
entrypoint: /data/generate-artifact-cache.bash
volumes:
- .:/data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment