Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +5 -2
Dockerfile
CHANGED
@@ -28,7 +28,10 @@ ENV CHROME_BIN=/usr/bin/google-chrome
|
|
28 |
|
29 |
# Copy your Python script into the container
|
30 |
COPY my_axe_test.py .
|
|
|
|
|
|
|
31 |
|
32 |
# Set the entry point (modify as needed)
|
33 |
-
|
34 |
-
RUN sudo python /app/my_axe_test.py
|
|
|
28 |
|
29 |
# Copy your Python script into the container
|
30 |
COPY my_axe_test.py .
|
31 |
+
RUN ls -l /app
|
32 |
+
RUN chmod 755 /app
|
33 |
+
|
34 |
|
35 |
# Set the entry point (modify as needed)
|
36 |
+
CMD ["python", "my_axe_test.py"]
|
37 |
+
#RUN sudo python /app/my_axe_test.py
|