blob: cb78b90022239cb2c5d6c29e8403c62d51eeb482 (
plain)
1
2
3
4
5
|
FROM python:3.5-alpine
ADD requirements.txt /
RUN apk add --no-cache ca-certificates gcc linux-headers build-base
RUN pip install -r /requirements.txt
CMD ["python3", "/apps/api/api.py"]
|