From e416a0df627a449b7e8fd48c7fa9e804674efcdd Mon Sep 17 00:00:00 2001 From: Mark Vrijlandt Date: Tue, 25 Mar 2025 10:19:02 +0100 Subject: [PATCH] fix dev.Dockerfile --- dev.Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dev.Dockerfile b/dev.Dockerfile index 7e24127..36a229b 100644 --- a/dev.Dockerfile +++ b/dev.Dockerfile @@ -10,13 +10,14 @@ RUN apt-get -y update && \ COPY simulator-worker/requirements.txt /app/requirements.txt RUN pip install --no-cache-dir -r /app/requirements.txt +COPY simulator-worker/ /app/simulator_worker/ +WORKDIR /app/simulator_worker +RUN pip install . + # Install local versions of sdk and protocol COPY ../omotes-sdk-protocol/python/ /omotes-sdk-protocol/python/ COPY ../omotes-sdk-python/ /omotes-sdk-python/ RUN pip install /omotes-sdk-python/ RUN pip install /omotes-sdk-protocol/python/ -COPY simulator-worker/ /app/simulator_worker/ -WORKDIR /app/simulator_worker -RUN pip install . ENTRYPOINT ["simulator_worker"]