Files
fn-serverless/images/dind
Reed Allman f51792ae5e Timestamps on apps / routes (#614)
* route updated_at

* add app created at, fix some route updated_at bugs

* add app updated_at

TODO need to add tests through front end
TODO for validation we don't really want to use the validate wrapper since
it's a programmer error and not a user error, hopefully tests block this.

* add tests for timestamps to exist / change on apps&routes

* route equals at done, fix tests wit dis

* fix up the equals sugar

* add swagger

* fix rebase

* precisely allocate maps in clone

* vetted

* meh

* fix api tests
2017-12-23 09:57:36 -06:00
..
2017-05-18 18:59:34 +00:00
2017-12-23 09:57:36 -06:00

Docker-in-Docker Base Image

This is the base image for all docker-in-docker images.

The difference between this and the official docker images are that this will choose the best filesystem automatically. The official ones use vfs (bad) by default unless you pass in a flag.

Usage

Just use this as your base image and use CMD for your program, NOT ENTRYPOINT. This will handle the rest.

FROM fnproject/dind
# OTHER STUFF
CMD ["./myproggie"]