diff options
| author | 2018-04-28 14:28:35 +0200 | |
|---|---|---|
| committer | 2018-04-28 14:28:35 +0200 | |
| commit | 54369f64c628e957d6c4a6953f2407d0f3df8564 (patch) | |
| tree | 64ad79ccdadb35a955c52a70131682de4f9efa28 /Dockerfile.base | |
| parent | Add help channel 4 (diff) | |
adds dockerfile that uses pipenv (#60)
Dockerfile and new deploy flow that builds the container in travis
Diffstat (limited to 'Dockerfile.base')
| -rw-r--r-- | Dockerfile.base | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Dockerfile.base b/Dockerfile.base new file mode 100644 index 000000000..b74be598e --- /dev/null +++ b/Dockerfile.base @@ -0,0 +1,7 @@ +FROM python:3.6-alpine + +RUN apk add --update tini +RUN apk add --update build-base +RUN apk add --update libffi-dev + +# usage: FROM pythondiscord/bot-base:latest |