diff options
| author | 2020-11-17 17:30:03 +0100 | |
|---|---|---|
| committer | 2020-11-17 17:30:03 +0100 | |
| commit | 8fa65952a986b70f372601bc1cd780dd99ecbe74 (patch) | |
| tree | 1bf377c4d2579e90f45f56b323135ba8a30a0a80 /docker | |
| parent | Fix error due to referencing value before it's set (diff) | |
Add image tag arg to final dockerfile
Diffstat (limited to 'docker')
| -rw-r--r-- | docker/Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index d8b89ec..9ebc82c 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,4 +1,5 @@ -FROM ghcr.io/python-discord/snekbox-venv:latest +ARG IMAGE_TAG=latest +FROM ghcr.io/python-discord/snekbox-base:$IMAGE_TAG ENTRYPOINT ["gunicorn"] CMD ["-c", "config/gunicorn.conf.py", "snekbox.api.app"] |