layout | title | description | comments |
---|---|---|---|
default |
okdocker/pynode |
Debian, Python and Node.js docker image, built daily on travis. Contains Yarn for Node.js package management. |
true |
A docker image based on debian jessie that bundles both modern Python interpreter and Node.js, with Yarn.
- Debian Jessie
- Python 3.6 (will stay on latest stable python 3)
- Node.js (LTS or Current)
- Yarn
{% highlight console %} $ docker run -it okdocker/pynode:latest /bin/bash {% endhighlight %}
Application code should go into the /app
default working directory, image do not use volumes and expose no ports.
A real world example would probably use it as base image for a custom image. Here is a minimalistic working dockerfile.
{% highlight docker %} {% include_relative examples/pynode/Dockerfile %} {% endhighlight %}
You can have a look at the basic okdocker/pynode example.
- lts (or 3.6-6.x): Node.js LTS
- latest (or 3.6-8.x): Node.js Current