Skip to content

Commit c57f88a

Browse files
committed
update Dockerfile
1 parent dd6abd1 commit c57f88a

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

Dockerfile

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
11
FROM python:3.8-slim-bullseye
22

33

4+
workdir /app
5+
copy . .
6+
RUN pip3 install -r requirements.txt
47

5-
# Install Stardist and tensorflow and its dependencies
6-
COPY requirements.txt /tmp/
7-
RUN pip3 install -r /tmp/requirements.txt
8-
9-
# --------------------------------------------------------------------------------------------
10-
# Install scripts
11-
COPY descriptor.json /app/descriptor.json
12-
COPY run.py /app/run.py
138

149
ENTRYPOINT ["python3", "/app/run.py"]

0 commit comments

Comments
 (0)