fix: CRLF error.

add CRLF to LF in Dockerfile.
This commit is contained in:
2025-12-14 01:06:17 +09:00
parent b1c9fa5f8e
commit a6f0d1c73c
2 changed files with 10 additions and 1 deletions
+2 -1
View File
@@ -10,7 +10,8 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*
COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
RUN chmod +x /usr/local/bin/docker-entrypoint.sh
RUN sed -i 's/\r$//' /usr/local/bin/docker-entrypoint.sh \
&& chmod +x /usr/local/bin/docker-entrypoint.sh
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt