Explorar el Código

Merge pull request #18 from ricet8ur/docked

Add Dockerfile.
Egor hace 2 años
padre
commit
e5088a23e4
Se han modificado 1 ficheros con 10 adiciones y 0 borrados
  1. 10 0
      Dockerfile

+ 10 - 0
Dockerfile

@@ -0,0 +1,10 @@
+FROM python:3.8-slim-buster
+WORKDIR /app
+COPY requirements.txt ./requirements.txt
+RUN pip install -r requirements.txt
+EXPOSE 8501
+COPY . /app
+ENTRYPOINT ["streamlit", "run"]
+CMD ["./source/main.py"]
+# docker build -t calc-q-factor:latest .
+# docker run -p 8501:8501 calc-q-factor:latest