dependancies
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -9,7 +9,7 @@ RUN chmod -R 755 /srv
|
|
9 |
|
10 |
# Install dependencies
|
11 |
RUN apt-get update && \
|
12 |
-
apt-get install -y libu2f-udev libvulkan1 mesa-vulkan-drivers wget
|
13 |
|
14 |
RUN apt-get install -y \
|
15 |
fonts-liberation \
|
@@ -54,6 +54,6 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
54 |
RUN rm thorium-browser_117.0.5938.157_amd64.deb
|
55 |
|
56 |
# Command to run the application
|
57 |
-
CMD uvicorn App.app:app --host 0.0.0.0 --port 7860 --workers 4 & celery -A App.Worker.celery worker -c 4 --loglevel=DEBUG
|
58 |
|
59 |
EXPOSE 7860
|
|
|
9 |
|
10 |
# Install dependencies
|
11 |
RUN apt-get update && \
|
12 |
+
apt-get install -y libu2f-udev libvulkan1 mesa-vulkan-drivers wget ffmpeg
|
13 |
|
14 |
RUN apt-get install -y \
|
15 |
fonts-liberation \
|
|
|
54 |
RUN rm thorium-browser_117.0.5938.157_amd64.deb
|
55 |
|
56 |
# Command to run the application
|
57 |
+
CMD python -m uvicorn App.app:app --host 0.0.0.0 --port 7860 --workers 4 & python -m celery -A App.Worker.celery worker -c 4 --loglevel=DEBUG
|
58 |
|
59 |
EXPOSE 7860
|