Skip to content

Commit

Permalink
Fixed path issue
Browse files Browse the repository at this point in the history
  • Loading branch information
kirgrim committed Apr 15, 2024
1 parent 8b54505 commit a73146a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.client
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.observer
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.server
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit a73146a

Please sign in to comment.