nroggendorff commited on
Commit
c542fd7
·
verified ·
1 Parent(s): 9c4c4f9

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -14
Dockerfile DELETED
@@ -1,14 +0,0 @@
1
- FROM python:latest
2
-
3
- WORKDIR /app
4
-
5
- COPY . .
6
-
7
- RUN pip install --no-cache-dir --upgrade -r requirements.txt
8
-
9
- RUN mkdir /.cache && chmod 777 /.cache
10
-
11
- RUN mkdir /app/model && chmod 777 /app/model
12
- RUN mkdir /app/tokenizer && chmod 777 /app/tokenizer
13
-
14
- CMD ["python3", "train.py"]