# Docker examples Dockerfile examples for: - Go, - Node.js, - Python, - React ## Build a container ```shell docker build -t $APPNAME:$VERSION . ``` ## Run a container ```shell docker run --rm $APPNAME:$VERSION ```