An open API service indexing awesome lists of open source software.

https://github.com/rjnemo/docker_examples

Dockerfile examples for: Go, Node.js, Python, React
https://github.com/rjnemo/docker_examples

docker dockerfile-examples go nodejs python react

Last synced: 3 days ago
JSON representation

Dockerfile examples for: Go, Node.js, Python, React

Awesome Lists containing this project

README

          

# 🐳 Docker examples

`Dockerfile` examples for:

- [Elixir](./elixir)
- [Go](./go)
- [Kotlin](./kotlin)
- [Node.js](./node)
- [Python](./python)
- [React](./react)

## 👷 Build a container

```sh
docker build -t $APPNAME:$VERSION .
```

## 🏃 Run a container

```sh
docker run --rm $APPNAME:$VERSION
```