Washedashore commited on
Commit
617187e
·
verified ·
1 Parent(s): 5c20cf3

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -15
Dockerfile DELETED
@@ -1,15 +0,0 @@
1
- docker run -it -p 7860:7860 --platform=linux/amd64 \
2
- registry.hf.space/washedashore-mllm-washed:latest
3
- FROM python:3.9
4
-
5
- WORKDIR /code
6
-
7
- COPY ./requirements.txt /code/requirements.txt
8
-
9
- RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
10
-
11
- COPY . .
12
-
13
- EXPOSE 7860
14
-
15
- CMD ["shiny", "run", "app.py", "--host", "0.0.0.0", "--port", "7860"]