Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions dev.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Loading