We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98c65d6 commit d1f3a2dCopy full SHA for d1f3a2d
1 file changed
emulator/DockerFile
@@ -7,8 +7,10 @@ RUN pip install --no-cache-dir hatch
7
# Copy project files
8
COPY . .
9
10
-# allow ssh to github
11
-RUN mkdir -p ~/.ssh && chmod 0700 ~/.ssh
12
-RUN ssh-keyscan github.com >> ~/.ssh/known_hosts
+# install emulator
+RUN hatch run pip install -e .
13
14
-RUN hatch run pip install -e .
+# enable hatch executable
+RUN chmod +x /usr/local/bin/hatch
15
+
16
+CMD /usr/local/bin/hatch run durable-functions-emulator --host 0.0.0.0 --port 9014
0 commit comments