Skip to content

Commit 73dafa5

Browse files
committed
chore: try directly using pip install and not hatch
1 parent 942d191 commit 73dafa5

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

emulator/DockerFile

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
FROM python:3.13-slim
22

33
WORKDIR /emulator
4-
# Install Hatch
5-
RUN pip install --no-cache-dir hatch
64

75
# Copy project files
86
COPY . .
97

8+
# check that correct files are copied over
9+
RUN ls
10+
1011
# install emulator
11-
RUN hatch run pip install -e .
12+
RUN pip install --no-cache-dir -e .
13+
14+
ENTRYPOINT ["durable-functions-emulator"]
1215

13-
CMD ["hatch", "run", "durable-functions-emulator", "--host", "0.0.0.0", "--port", "9014"]
16+
CMD ["--host", "0.0.0.0", "--port", "9014"]

0 commit comments

Comments
 (0)