Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0629ffc3bc | |||
| a6f0d1c73c |
@@ -0,0 +1,8 @@
|
|||||||
|
# Normalize line endings to avoid CRLF issues in Linux containers
|
||||||
|
* text=auto
|
||||||
|
|
||||||
|
# Shell scripts must be LF for correct shebang parsing
|
||||||
|
*.sh text eol=lf
|
||||||
|
|
||||||
|
# PowerShell scripts are typically CRLF on Windows
|
||||||
|
*.ps1 text eol=crlf
|
||||||
+2
-1
@@ -10,7 +10,8 @@ RUN apt-get update \
|
|||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
|
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 ./
|
COPY requirements.txt ./
|
||||||
RUN pip install --no-cache-dir -r requirements.txt
|
RUN pip install --no-cache-dir -r requirements.txt
|
||||||
|
|||||||
Reference in New Issue
Block a user