Report this

What is the reason for this report?

How to skip Dockerfile when deploying to App Platform?

Posted on May 3, 2021

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!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

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:

  1. Rename Dockerfile to e.g. Dockerfile.prod then create the app via the UI.

  2. 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.

  3. 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:

  • environment_slug: python github: branch: main repo: simetrique/backend deploy_on_push: true name: backend run_command: gunicorn --worker-tmp-dir /dev/shm --config gunicorn_config.py main:app

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.