Diff of /Dockerfile [000000] .. [a22922]

Switch to side-by-side view

--- a
+++ b/Dockerfile
@@ -0,0 +1,17 @@
+FROM pytorch/pytorch:1.12.1-cuda11.3-cudnn8-runtime
+
+WORKDIR /workspace
+
+RUN apt-get update
+RUN DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get -y install tzdata
+RUN apt-get install build-essential git python3-opencv -y
+
+# Debug
+# COPY . /workspace
+# RUN pip install .
+
+# Release
+RUN git clone https://github.com/MICLab-Unicamp/medseg
+RUN pip install medseg/.
+
+RUN mv /workspace/medseg/predict.sh /workspace/predict.sh