2018-10-30 06:15:49 +00:00
|
|
|
FROM python:3
|
|
|
|
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
|
|
|
|
RUN apt-get update
|
|
|
|
RUN apt-get install ffmpeg -y
|
|
|
|
|
|
|
|
COPY ./app/requirements.txt ./
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
|
|
|
|
COPY ./app/ .
|
2018-10-30 10:05:39 +00:00
|
|
|
COPY ./config/ ./config/
|