diff --git a/api/Dockerfile b/api/Dockerfile index 6e014c6..991b3ff 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -26,7 +26,7 @@ RUN echo "Oh dang look at that $INSTALL_FFMPEG" RUN if [ ${INSTALL_FFMPEG} = true ]; then \ apt-get install -y ffmpeg \ ;fi -RUN ffmpeg -version +RUN ffmpeg -version RUN ffmpeg -encoders RUN ffmpeg -decoders @@ -34,7 +34,7 @@ RUN apt-get install curl -y # Install Poetry RUN if [ ! -e /usr/local/bin/poetry ]; then \ - curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | POETRY_HOME=/opt/poetry python && \ + curl -sSL https://install.python-poetry.org | POETRY_HOME=/opt/poetry python && \ cd /usr/local/bin && \ ln -s /opt/poetry/bin/poetry && \ poetry config virtualenvs.create false \ diff --git a/readme.md b/readme.md index eb5ea1e..e946128 100644 --- a/readme.md +++ b/readme.md @@ -73,7 +73,7 @@ To get a local copy up and running follow these simple example steps. 1. Change docker-compose.dev.yml to docker-compose.yml 2. ```sh -docker-compose build api +docker compose build --build-arg INSTALL_FFMPEG=true api ``` 3. Start the service ```sh