We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d4e0f1 commit 8cf6814Copy full SHA for 8cf6814
2 files changed
emulator/DockerFile
@@ -1,4 +1,4 @@
1
-FROM public.ecr.aws/docker/library/python:3.13
+FROM python:3.11-slim
2
3
WORKDIR /emulator
4
# Install Hatch
@@ -8,6 +8,7 @@ RUN pip install --no-cache-dir hatch
8
COPY . .
9
10
# install emulator
11
+RUN hatch env create
12
RUN hatch run pip install -e .
13
14
# where is the hatch executable installed
emulator/README.md
@@ -58,7 +58,7 @@ durable-functions-emulator --host 0.0.0.0 --port 8080
58
The emulator provides a health check endpoint:
59
60
```bash
61
-curl http://localhost:5000/ping
+curl http://localhost:5000/health
62
```
63
64
## Development
0 commit comments