change line endings to linux. the other way was not wokring consistantly
This commit is contained in:
parent
858d84e2a2
commit
67db4ba69c
1 changed files with 4 additions and 1 deletions
|
|
@ -15,7 +15,10 @@ WORKDIR /home/node/app
|
|||
COPY --chown=node:node . ./
|
||||
|
||||
COPY ./set_proxy.sh .
|
||||
RUN chmod +x set_proxy.sh && ./set_proxy.sh
|
||||
RUN chmod +x set_proxy.sh && \
|
||||
cat set_proxy.sh | tr -d '\r' > set_proxy_unix.sh && \
|
||||
chmod +x set_proxy_unix.sh && \
|
||||
./set_proxy_unix.sh
|
||||
|
||||
USER node
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue