Skip to content

Commit f71d23b

Browse files
authored
fix casing (#15)
* fix casing * casing everywhere
1 parent b0c6664 commit f71d23b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ COPY requirements.txt .
1111
RUN pip install --no-cache-dir -r requirements.txt
1212

1313
# Copy the Python script into the container
14-
COPY TitleCreator.py .
14+
COPY titlecreator.py .
1515

1616
# Make the script executable
17-
RUN chmod +x TitleCreator.py
17+
RUN chmod +x titlecreator.py
1818

1919
# Expose the port the app runs on (only used in web mode)
2020
EXPOSE 8080
@@ -23,4 +23,4 @@ EXPOSE 8080
2323
ENV WEB_MODE=false
2424

2525
# Set the command to run when the container starts
26-
CMD ["python", "TitleCreator.py"]
26+
CMD ["python", "titlecreator.py"]

0 commit comments

Comments
 (0)