Update Dockerfile
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
|
@@ -3,6 +3,7 @@ WORKDIR /app
|
|
| 3 |
COPY requirements.txt ./requirements.txt
|
| 4 |
RUN apt-get update \
|
| 5 |
&& apt-get -y install libpq-dev gcc \
|
|
|
|
| 6 |
&& pip install psycopg2
|
| 7 |
# Install dependencies
|
| 8 |
RUN pip install -r requirements.txt
|
|
|
|
| 3 |
COPY requirements.txt ./requirements.txt
|
| 4 |
RUN apt-get update \
|
| 5 |
&& apt-get -y install libpq-dev gcc \
|
| 6 |
+
&& apt-get -y install ffmpeg \
|
| 7 |
&& pip install psycopg2
|
| 8 |
# Install dependencies
|
| 9 |
RUN pip install -r requirements.txt
|