diff options
author | syn <isaqtm@gmail.com> | 2020-03-16 22:17:48 +0300 |
---|---|---|
committer | syn <isaqtm@gmail.com> | 2020-03-16 22:17:48 +0300 |
commit | 977c7c38ff4196f43c4784308d81fd7e6a471511 (patch) | |
tree | 3e53843c181a60ec7d2b3b1d4dfdf4868859c3a7 /deploy/Dockerfile.base | |
download | blure-977c7c38ff4196f43c4784308d81fd7e6a471511.tar.gz |
Init commit
Diffstat (limited to 'deploy/Dockerfile.base')
-rw-r--r-- | deploy/Dockerfile.base | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/deploy/Dockerfile.base b/deploy/Dockerfile.base new file mode 100644 index 0000000..3df944d --- /dev/null +++ b/deploy/Dockerfile.base @@ -0,0 +1,12 @@ +FROM python:3-alpine + +RUN apk add gcc g++ musl-dev make bash python3-dev zlib-dev jpeg-dev + +# pip installations are slow, so separate them to cache +RUN pip3 install sanic +RUN pip3 install jinja2-sanic +RUN pip3 install requests +RUN pip3 install asyncpg +RUN pip3 install Pillow + +CMD bash |