Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
@@ -11,10 +11,10 @@ RUN apt-get update && apt-get install -y \
|
|
11 |
&& rm -rf /var/lib/apt/lists/*
|
12 |
|
13 |
# Copy the Python script into the container
|
14 |
-
COPY
|
15 |
|
16 |
# Make the Python script executable
|
17 |
-
RUN chmod +x
|
18 |
|
19 |
# Run the Python script when the container launches
|
20 |
-
CMD ["python", "main.py"]
|
|
|
11 |
&& rm -rf /var/lib/apt/lists/*
|
12 |
|
13 |
# Copy the Python script into the container
|
14 |
+
COPY main.py .
|
15 |
|
16 |
# Make the Python script executable
|
17 |
+
RUN chmod +x main.py
|
18 |
|
19 |
# Run the Python script when the container launches
|
20 |
+
CMD ["python", "./main.py"]
|