Skip to content

MathiasGruber/python-backend-environment

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

python-backend-image

Docker image for python backend image to be used on Azure App Service deployements of e.g. Django, Flask, etc.

Use in docker-compose

Typically I use this image in docker-compose as follows

With the Dockerfile as follows:

# Note: You can use any Debian/Ubuntu based image you want.
FROM nanomathias/python-backend-environment

# [Optional] Uncomment this section to install additional OS packages.
# RUN apt-get update && apt-get -y install --no-install-recommends <your-package-list-here>

Build locally

# Setup docker builder
docker buildx create --name mybuilder --driver-opt network=host --use

# Build docker image (multi-arch version)
docker buildx build \
    --push \
    --tag nanomathias/python-backend-environment:release-1.0.9 \
    --platform linux/amd64,linux/arm64 .

About

Docker image suitable for python backend applications to be deployed on Azure App Service

Resources

License

Stars

Watchers

Forks

Packages

No packages published