GordonChan365 commited on
Commit
86c7cd0
·
verified ·
1 Parent(s): 786e242

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -8
Dockerfile CHANGED
@@ -1,9 +1,8 @@
1
- FROM python:3.10.11-slim
2
- WORKDIR $HOME/app
3
- COPY requirements.txt $HOME/app
4
- RUN mkdir /.cache && chmod 777 /.cache
5
- RUN pip install -r requirements.txt
6
- COPY . $HOME/app
7
- EXPOSE 8081
8
- RUN python kitt.py download-files
9
  CMD python kitt.py start
 
1
+ FROM python:3.10.11-slim
2
+ WORKDIR $HOME/app
3
+ COPY requirements.txt $HOME/app
4
+ RUN mkdir /.cache && chmod 777 /.cache
5
+ RUN pip install -r requirements.txt
6
+ COPY . $HOME/app
7
+ RUN python kitt.py download-files
 
8
  CMD python kitt.py start