From 2669ed5441b3198c78095f03b49b615a6c3eddeb Mon Sep 17 00:00:00 2001 From: lovegaoshi <106490582+lovegaoshi@users.noreply.github.com> Date: Sat, 30 Nov 2024 03:28:41 +0000 Subject: [PATCH] fix: build --- Dockerfile | 4 ++-- Dockerfile-gpu | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1e146a0..53e499e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM tensorflow/tensorflow:2.18.0 -RUN sudo apt-get update --allow-insecure-repositories -RUN sudo apt-get -y --allow-unauthenticated install ffmpeg aria2 wget nano git +RUN apt-get update --allow-insecure-repositories +RUN apt-get -y --allow-unauthenticated install ffmpeg aria2 wget nano git WORKDIR /inaseg RUN git clone https://github.com/lovegaoshi/inaSpeechSegmenter.git RUN cd inaSpeechSegmenter; pip install . diff --git a/Dockerfile-gpu b/Dockerfile-gpu index 25c6fd8..2dac121 100644 --- a/Dockerfile-gpu +++ b/Dockerfile-gpu @@ -1,6 +1,6 @@ FROM tensorflow/tensorflow:2.18.0-gpu -RUN sudo apt-get update --allow-insecure-repositories -RUN sudo apt-get -y --allow-unauthenticated install ffmpeg aria2 wget nano git +RUN apt-get update --allow-insecure-repositories +RUN apt-get -y --allow-unauthenticated install ffmpeg aria2 wget nano git WORKDIR /inaseg RUN git clone https://github.com/lovegaoshi/inaSpeechSegmenter.git RUN cd inaSpeechSegmenter; pip install .