diff --git a/dockerfiles/Dockerfile.client b/dockerfiles/Dockerfile.client index b1acf0a7..8824e2fd 100644 --- a/dockerfiles/Dockerfile.client +++ b/dockerfiles/Dockerfile.client @@ -8,6 +8,6 @@ ENV KLAT_ENV PROD ENV CHATCLIENT_CONFIG /app/config/config.json ENV PYTHONPATH="/app:/app/chat_client/" -RUN pip install --no-cache-dir -r ./services/client.txt +RUN pip install --no-cache-dir -r ./client.txt CMD python -m chat_client diff --git a/dockerfiles/Dockerfile.observer b/dockerfiles/Dockerfile.observer index 3099764f..f51e7f39 100644 --- a/dockerfiles/Dockerfile.observer +++ b/dockerfiles/Dockerfile.observer @@ -8,6 +8,6 @@ ENV KLAT_ENV PROD ENV KLATCHAT_OBSERVER_CONFIG /app/config/config.json ENV PYTHONPATH="/app:/app/klatchat_observer/" -RUN pip install --no-cache-dir -r ./services/observer.txt +RUN pip install --no-cache-dir -r ./observer.txt CMD python -m klatchat_observer diff --git a/dockerfiles/Dockerfile.server b/dockerfiles/Dockerfile.server index ae2bb8b4..2816c6f6 100644 --- a/dockerfiles/Dockerfile.server +++ b/dockerfiles/Dockerfile.server @@ -9,6 +9,6 @@ ENV CHATSERVER_CONFIG /app/config/config.json ENV DATABASE_CONFIG /app/config/config.json ENV PYTHONPATH="/app:/app/chat_server/" -RUN pip install --no-cache-dir -r ./services/server.txt +RUN pip install --no-cache-dir -r ./server.txt CMD python -m chat_server