ka1kuk commited on
Commit
5d12bd2
1 Parent(s): 3d9a748

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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 script.py .
15
 
16
  # Make the Python script executable
17
- RUN chmod +x script.py
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"]