We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd6abd1 commit c57f88aCopy full SHA for c57f88a
Dockerfile
@@ -1,14 +1,9 @@
1
FROM python:3.8-slim-bullseye
2
3
4
+workdir /app
5
+copy . .
6
+RUN pip3 install -r requirements.txt
7
-# Install Stardist and tensorflow and its dependencies
-COPY requirements.txt /tmp/
-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
13
14
ENTRYPOINT ["python3", "/app/run.py"]
0 commit comments