We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0c6664 commit f71d23bCopy full SHA for f71d23b
Dockerfile
@@ -11,10 +11,10 @@ COPY requirements.txt .
11
RUN pip install --no-cache-dir -r requirements.txt
12
13
# Copy the Python script into the container
14
-COPY TitleCreator.py .
+COPY titlecreator.py .
15
16
# Make the script executable
17
-RUN chmod +x TitleCreator.py
+RUN chmod +x titlecreator.py
18
19
# Expose the port the app runs on (only used in web mode)
20
EXPOSE 8080
@@ -23,4 +23,4 @@ EXPOSE 8080
23
ENV WEB_MODE=false
24
25
# Set the command to run when the container starts
26
-CMD ["python", "TitleCreator.py"]
+CMD ["python", "titlecreator.py"]
0 commit comments