Skip to content

Commit 0d058f8

Browse files
authored
Merge pull request #52 from Project-OMOTES/51-fix-devdockerfile
fix dev.Dockerfile
2 parents 37e0b27 + e416a0d commit 0d058f8

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

dev.Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,14 @@ RUN apt-get -y update && \
1010
COPY simulator-worker/requirements.txt /app/requirements.txt
1111
RUN pip install --no-cache-dir -r /app/requirements.txt
1212

13+
COPY simulator-worker/ /app/simulator_worker/
14+
WORKDIR /app/simulator_worker
15+
RUN pip install .
16+
1317
# Install local versions of sdk and protocol
1418
COPY ../omotes-sdk-protocol/python/ /omotes-sdk-protocol/python/
1519
COPY ../omotes-sdk-python/ /omotes-sdk-python/
1620
RUN pip install /omotes-sdk-python/
1721
RUN pip install /omotes-sdk-protocol/python/
1822

19-
COPY simulator-worker/ /app/simulator_worker/
20-
WORKDIR /app/simulator_worker
21-
RUN pip install .
2223
ENTRYPOINT ["simulator_worker"]

0 commit comments

Comments
 (0)