Spaces:
Build error
Build error
Anupam251272
commited on
Commit
•
bfc57e2
1
Parent(s):
1a65f94
Update Dockerfile
Browse files- Dockerfile +4 -9
Dockerfile
CHANGED
@@ -1,10 +1,5 @@
|
|
1 |
-
FROM python:3.
|
2 |
-
|
3 |
WORKDIR /app
|
4 |
-
|
5 |
-
|
6 |
-
|
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"]
|
|
|
|
|
|
|
|