Anupam251272 commited on
Commit
bfc57e2
1 Parent(s): 1a65f94

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -9
Dockerfile CHANGED
@@ -1,10 +1,5 @@
1
- FROM python:3.9-slim-buster
2
-
3
  WORKDIR /app
4
-
5
- COPY requirements.txt .
6
- RUN pip install --no-cache-dir -r requirements.txt
7
-
8
- COPY . .
9
-
10
- CMD ["python", "BrailleBuddy.py"] # Replace your_script_name.py with your file name
 
1
+ FROM python:3.10-slim-buster
 
2
  WORKDIR /app
3
+ COPY your_script_name.py .
4
+ CMD ["python", "
5
+ BrailleBuddy.py"]