{"id":22856682,"url":"https://github.com/deis/example-dockerfile-python","last_synced_at":"2025-04-30T15:15:59.609Z","repository":{"id":14883506,"uuid":"17607127","full_name":"deis/example-dockerfile-python","owner":"deis","description":"A simple Dockerfile / Python app for Deis, the open source PaaS","archived":false,"fork":false,"pushed_at":"2017-05-19T16:57:24.000Z","size":13,"stargazers_count":4,"open_issues_count":0,"forks_count":25,"subscribers_count":19,"default_branch":"master","last_synced_at":"2024-04-14T19:23:15.197Z","etag":null,"topics":["deis-workflow","dockerfile","example","python"],"latest_commit_sha":null,"homepage":"https://deis.com","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/deis.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-03-10T20:21:34.000Z","updated_at":"2023-03-11T20:48:31.000Z","dependencies_parsed_at":"2022-08-20T08:40:19.839Z","dependency_job_id":null,"html_url":"https://github.com/deis/example-dockerfile-python","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deis%2Fexample-dockerfile-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deis%2Fexample-dockerfile-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deis%2Fexample-dockerfile-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deis%2Fexample-dockerfile-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/deis","download_url":"https://codeload.github.com/deis/example-dockerfile-python/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":229510765,"owners_count":18084444,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["deis-workflow","dockerfile","example","python"],"created_at":"2024-12-13T08:09:25.050Z","updated_at":"2024-12-13T08:09:25.622Z","avatar_url":"https://github.com/deis.png","language":"HTML","readme":"Example Dockerfile Python App\n=============================\n\nThis sample application shows how you can deploy Dockerfile-based\nPython applications to [Deis Workflow][].\n\n## Usage\n\n```console\n$ git clone https://github.com/deis/example-dockerfile-python\n$ cd example-dockerfile-python\n$ deis create\nCreating Application... done, created actual-gatepost\nGit remote deis added\nremote available at ssh://git@deis-builder.deis.rocks:2222/actual-gatepost.git\n$ git push deis master\nCounting objects: 63, done.\nDelta compression using up to 4 threads.\nCompressing objects: 100% (61/61), done.\nWriting objects: 100% (63/63), 10.81 KiB | 0 bytes/s, done.\nTotal 63 (delta 15), reused 0 (delta 0)\nStarting build... but first, coffee!\nStep 1 : FROM gliderlabs/alpine:3.4\n---\u003e 4ccfa836b1ef\nStep 2 : RUN apk-install python\n---\u003e Running in 572ae393ecbd\nfetch http://alpine.gliderlabs.com/alpine/v3.4/main/x86_64/APKINDEX.tar.gz\nfetch http://alpine.gliderlabs.com/alpine/v3.4/community/x86_64/APKINDEX.tar.gz\n(1/10) Installing libbz2 (1.0.6-r4)\n(2/10) Installing expat (2.1.1-r0)\n(3/10) Installing libffi (3.2.1-r2)\n(4/10) Installing gdbm (1.11-r1)\n(5/10) Installing ncurses-terminfo-base (6.0-r7)\n(6/10) Installing ncurses-terminfo (6.0-r7)\n(7/10) Installing ncurses-libs (6.0-r7)\n(8/10) Installing readline (6.3.008-r4)\n(9/10) Installing sqlite-libs (3.13.0-r0)\n(10/10) Installing python (2.7.11-r3)\nExecuting busybox-1.24.2-r8.trigger\nOK: 51 MiB in 21 packages\n---\u003e fbecd3fd8d74\nRemoving intermediate container 572ae393ecbd\nStep 3 : ADD . /app\n---\u003e ce8ecbeddcc0\nRemoving intermediate container 5db31a5ffb53\nStep 4 : WORKDIR /app\n---\u003e Running in adec7d5be4f0\n---\u003e a3359044cf9d\nRemoving intermediate container adec7d5be4f0\nStep 5 : CMD python -m SimpleHTTPServer 5000\n---\u003e Running in 54f58e80e26c\n---\u003e 8d77fa1e8f6a\nRemoving intermediate container 54f58e80e26c\nStep 6 : EXPOSE 5000\n---\u003e Running in c791be404095\n---\u003e e98493484c2f\nRemoving intermediate container c791be404095\nSuccessfully built e98493484c2f\nPushing to registry\nBuild complete.\nLaunching App...\nDone, actual-gatepost:v2 deployed to Deis\n\nUse 'deis open' to view this application in your browser\n\nTo learn more, use 'deis help' or visit https://deis.com/\n\nTo ssh://git@deis-builder.deis.rocks:2222/actual-gatepost.git\n * [new branch]      master -\u003e master\n\n$ curl http://actual-gatepost.deis.rocks\n\u003ch1\u003ePowered by Deis\u003c/h1\u003e\n```\n\n## Additional Resources\n\n* [GitHub Project](https://github.com/deis/workflow)\n* [Documentation](https://deis.com/docs/workflow/)\n* [Blog](https://deis.com/blog/)\n\n[Deis Workflow]: https://github.com/deis/workflow#readme\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeis%2Fexample-dockerfile-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdeis%2Fexample-dockerfile-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeis%2Fexample-dockerfile-python/lists"}