fix docker entrypoint.

This commit is contained in:
licsber 2024-03-12 20:12:41 +08:00
parent 9ced8df451
commit a1d3b13c16
3 changed files with 3 additions and 3 deletions

View File

@ -20,4 +20,4 @@ ENV GOPROXY='https://goproxy.io,direct'
RUN if [ `nproc` -le 4 ]; then make -j3 || make V=s; else make -j `nproc` || make V=s; fi && \
echo $?
CMD ['bash']
CMD ["echo 'Hello from LicsberLab!~'"]

View File

@ -34,4 +34,4 @@ RUN cd lede && \
RUN cd lede && \
make -j3 || make V=s
CMD ['bash']
CMD ["echo 'Hello from LicsberLab!~'"]

View File

@ -17,4 +17,4 @@ ENV GOPROXY='https://goproxy.io,direct'
RUN if [ `nproc` -le 4 ]; then make -j3 || make V=s; else make -j `nproc` || make V=s; fi && \
echo $?
CMD ['bash']
CMD ["echo 'Hello from LicsberLab!~'"]