Skip to content

Commit

Permalink
Fixed issue with building base image
Browse files Browse the repository at this point in the history
  • Loading branch information
kirgrim committed Apr 15, 2024
1 parent a73146a commit 0a5ca62
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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 ./client.txt
RUN pip install --no-cache-dir -r ./services/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 ./observer.txt
RUN pip install --no-cache-dir -r ./services/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 ./server.txt
RUN pip install --no-cache-dir -r ./services/server.txt

CMD python -m chat_server
2 changes: 1 addition & 1 deletion scripts/build_base_image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ echo "Build version = $VERSION";

cd ..

cp requirements/requirements.txt base
cp requirements/base.txt base

cd base

Expand Down

0 comments on commit 0a5ca62

Please sign in to comment.