Added the 'timeout 15' before bee run --downdoc=true' to make sure swagger is dowloaded

This commit is contained in:
pb 2025-03-06 10:23:12 +01:00
parent f69e9bf2fa
commit 0baee5e339

View File

@ -28,6 +28,9 @@ RUN export CGO_ENABLED=0 && \
COPY . .
RUN sed -i '/replace/d' go.mod
RUN if [ ! -f swagger/index.html ]; then timeout 15 bee run --gendoc=true --downdoc=true; fi
RUN bee generate routers
RUN bee generate docs
RUN bee pack
RUN mkdir -p /app/extracted && tar -zxvf oc-datacenter.tar.gz -C /app/extracted
RUN sed -i 's/http:\/\/127.0.0.1:8080\/swagger\/swagger.json/swagger.json/g' /app/extracted/swagger/index.html