Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rennancockles/amazonlinux-python-buildpack-docker
https://github.com/rennancockles/amazonlinux-python-buildpack-docker
Last synced: 15 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/rennancockles/amazonlinux-python-buildpack-docker
- Owner: rennancockles
- License: mit
- Created: 2021-09-23T18:51:51.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-11-12T20:01:39.000Z (about 3 years ago)
- Last Synced: 2024-11-08T13:20:40.373Z (about 2 months ago)
- Language: Dockerfile
- Size: 6.84 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![GitHub Workflow Status](https://img.shields.io/github/workflow/status/rennancockles/amazonlinux-python-buildpack-docker/Deploy?logo=github)
![Docker Image Version (tag latest semver)](https://img.shields.io/docker/v/rennancockles/amazonlinux-python-buildpack/python3.6?logo=docker)
![Docker Image Version (tag latest semver)](https://img.shields.io/docker/v/rennancockles/amazonlinux-python-buildpack/python3.7?logo=docker)
![Docker Image Version (tag latest semver)](https://img.shields.io/docker/v/rennancockles/amazonlinux-python-buildpack/python3.8?logo=docker)
![Docker Image Version (tag latest semver)](https://img.shields.io/docker/v/rennancockles/amazonlinux-python-buildpack/python3.9?logo=docker)
![Docker Image Version (tag latest semver)](https://img.shields.io/docker/v/rennancockles/amazonlinux-python-buildpack/latest?logo=docker)## Supported tags and respective `Dockerfile` links
* [`python3.9`, `latest` _(Dockerfile)_](https://github.com/rennancockles/amazonlinux-python-buildpack-docker/blob/master/docker-images/python3.9.dockerfile)
* [`python3.8` _(Dockerfile)_](https://github.com/rennancockles/amazonlinux-python-buildpack-docker/blob/master/docker-images/python3.8.dockerfile)
* [`python3.7`, _(Dockerfile)_](https://github.com/rennancockles/amazonlinux-python-buildpack-docker/blob/master/docker-images/python3.7.dockerfile)
* [`python3.6` _(Dockerfile)_](https://github.com/rennancockles/amazonlinux-python-buildpack-docker/blob/master/docker-images/python3.6.dockerfile)# amazonlinux-python-buildpack
**Amazon Linux** base compilation image for applications in **Python 3.6** and above.
## Description
This [**Docker**](https://www.docker.com/) image allows you to build your [**Python**](https://www.python.org/) applications to deploy to [**AWS Lambda**](https://aws.amazon.com/lambda/) or other AWS Service that runs with [**Amazon Linux 2**](https://aws.amazon.com/pt/amazon-linux-2/).
---
**GitHub repo**: [https://github.com/rennancockles/amazonlinux-python-buildpack-docker](https://github.com/rennancockles/amazonlinux-python-buildpack-docker)
**Docker Hub image**: [https://hub.docker.com/r/rennancockles/amazonlinux-python-buildpack/](https://hub.docker.com/r/rennancockles/amazonlinux-python-buildpack/)
## How to use
* You shouldn't have to clone the GitHub repo. You should use it as a base image for other images, using this in your `Dockerfile`:
```Dockerfile
FROM rennancockles/amazonlinux-python-buildpack:python3.9# Your Dockerfile code...
```* But, if you need Python 3.8 that line would have to be `FROM rennancockles/amazonlinux-python-buildpack:python3.8`.