We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 37e0b27 + e416a0d commit 0d058f8Copy full SHA for 0d058f8
1 file changed
dev.Dockerfile
@@ -10,13 +10,14 @@ RUN apt-get -y update && \
10
COPY simulator-worker/requirements.txt /app/requirements.txt
11
RUN pip install --no-cache-dir -r /app/requirements.txt
12
13
+COPY simulator-worker/ /app/simulator_worker/
14
+WORKDIR /app/simulator_worker
15
+RUN pip install .
16
+
17
# Install local versions of sdk and protocol
18
COPY ../omotes-sdk-protocol/python/ /omotes-sdk-protocol/python/
19
COPY ../omotes-sdk-python/ /omotes-sdk-python/
20
RUN pip install /omotes-sdk-python/
21
RUN pip install /omotes-sdk-protocol/python/
22
-COPY simulator-worker/ /app/simulator_worker/
-WORKDIR /app/simulator_worker
-RUN pip install .
23
ENTRYPOINT ["simulator_worker"]
0 commit comments