This repository was archived by the owner on Mar 16, 2024. It is now read-only.

Description
If a user creates an app with the following Acornfile, the app will be stuck in a "pending" status and will never become ready.
containers: web: {
image: "nginx"
ports: publish: "80/http"
files: {
"/usr/share/nginx/html/index.html": "<h1>My First Acorn!!</h1>"
}
}
jobs: "delete-job": {
image: "busybox"
command: ["sleep", "10s"]
events: ["delete"]
}