blob: 3df944da4f60ee2e8010584b56b115df213006d2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
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
|