Sagar00025 commited on
Commit
db950dd
·
verified ·
1 Parent(s): 5b9fc41

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -4
Dockerfile CHANGED
@@ -1,5 +1,8 @@
1
- FROM python:3.10
 
 
 
 
2
  WORKDIR /app
3
- COPY . .
4
- RUN chmod +x start.sh
5
- CMD ["bash", "start.sh"]
 
1
+ FROM python:3.10-slim-buster
2
+
3
+ RUN apt-get update && apt-get upgrade -y
4
+ RUN apt-get install git -y
5
+ COPY . /app
6
  WORKDIR /app
7
+ RUN pip3 install -U -r requirements.txt
8
+ CMD python3 main.py