By olegagapov
I have a repo with Flask app which I copied from https://github.com/digitalocean/sample-flask.
For development purposes only, I’ve created a minimal Dockerfile.
Now, when I try to deploy the app to App Platform it tries to deploy it as Docker app, however I want to deploy it as Python app.
I’ve added .do/app.yaml and .do/deploy.template.yaml but no luck.
Just in case, here are my configs:
# app.yaml
name: backend
services:
- environment_slug: python
github:
branch: main
deploy_on_push: true
repo: simetrique/backend
name: backend
run_command: gunicorn --worker-tmp-dir /dev/shm --config gunicorn_config.py main:app
# deploy.template.yaml
spec:
name: backend
services:
- environment_slug: python
git:
branch: main
repo: https://github.com/simetrique/backend.git
name: backend
run_command: gunicorn --worker-tmp-dir /dev/shm --config gunicorn_config.py main:app
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Hi @olegagapov
If you have a Dockerfile in your repo root, it will be prioritized when creating the app via the UI. This is something we’re working on improving but here are some options in the mean time:
Rename Dockerfile to e.g. Dockerfile.prod then create the app via the UI.
Create the app using doctl. In your repo, run: doctl app create --spec .do/app.yaml. Since you don’t set dockerfile_path in the spec, the Dockerfile will not be used.
Since you have deploy.template.yaml, create the app via the Deploy to DO button flow: click here to create. Note that this won’t work if your repo is private. If you want to make use of Auto Deploy on Push you will need to replace the git: block in deploy.template.yaml with the github: block similar to app.yaml. So:
[label deploy.template.yaml] spec: name: backend services:
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.