blob: 3b3974ca7b8542d9d73ac0a3c5c5cab5f31a9732 (
plain)
1
2
3
4
5
6
7
8
9
|
FROM python:3.6-alpine
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY . /usr/src/app
RUN apk add --no-cache git && pip install --no-cache-dir -r requirements.txt && pip install --no-cache-dir git+git://github.com/zzzeek/sqlalchemy
CMD ["python", "worker.py"]
|