nhanne24 commited on
Commit
942c0e2
·
verified ·
1 Parent(s): dbdb2b3

Delete DockerFile

Browse files
Files changed (1) hide show
  1. DockerFile +0 -14
DockerFile DELETED
@@ -1,14 +0,0 @@
1
-
2
- FROM python:3.9
3
-
4
- RUN useradd -m -u 1000 user
5
- USER user
6
- ENV PATH="/home/user/.local/bin:$PATH"
7
-
8
- WORKDIR /app
9
-
10
- COPY --chown=user ./requirements.txt requirements.txt
11
- RUN pip install --no-cache-dir --upgrade -r requirements.txt
12
-
13
- COPY --chown=user . /app
14
- CMD ["gunicorn", "--bind", "0.0.0.0:7860", "app:app"]