Revert "Docker preserve sources" (#620)

This commit is contained in:
Ettore Di Giacinto 2023-06-17 23:22:04 +02:00 committed by GitHub
parent 295f3030a9
commit 6c94f3cd67
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 12 deletions

View file

@ -41,10 +41,6 @@ ENV NVIDIA_VISIBLE_DEVICES=all
WORKDIR /build
COPY Makefile .
RUN make get-sources
COPY go.mod .
RUN make prepare
COPY . .
RUN make build
@ -62,8 +58,9 @@ RUN if [ "${FFMPEG}" = "true" ]; then \
WORKDIR /build
COPY . .
RUN make prepare-sources
COPY --from=builder /build/local-ai ./
COPY entrypoint.sh .
# Define the health check command
HEALTHCHECK --interval=1m --timeout=10m --retries=10 \