Corrected dockerfile

This commit is contained in:
egguy
2022-10-28 21:47:16 +02:00
parent fdb727d263
commit 8f1937abb8
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ RUN pip3 install --no-cache --upgrade pip setuptools
# Copy data for add-on
COPY script.sh /app/script.sh
WORKDIR /app
RUN curl -Lk https://github.com/egguy/grott/archive/refs/heads/feature/docker-build.zip --output files.zip && unzip -o files.zip && rm files.zip && mv grott-*/*.py ./ && mv grott-*/requirements.txt ./ rm grott-*/ -rf
RUN curl -Lk https://github.com/egguy/grott/archive/refs/heads/feature/docker-build.zip --output files.zip && unzip -o files.zip && rm files.zip && mv grott-*/*.py ./ && mv grott-*/requirements.txt ./ && rm grott-*/ -rf
#Install required python packages
RUN pip3 install -r requirements.txt
+1 -1
View File
@@ -19,7 +19,7 @@ RUN pip3 install --no-cache --upgrade pip setuptools
# Copy data for add-on
COPY script.sh /app/script.sh
WORKDIR /app
RUN curl -Lk https://github.com/egguy/grott/archive/refs/heads/feature/docker-build.zip --output files.zip && unzip -o files.zip && rm files.zip && mv grott-*/*.py ./ && rm grott-*/ -rf
RUN curl -Lk https://github.com/egguy/grott/archive/refs/heads/feature/docker-build.zip --output files.zip && unzip -o files.zip && rm files.zip && mv grott-*/*.py ./ && mv grott-*/requirements.txt ./ && rm grott-*/ -rf
#Install required python packages
RUN pip3 install -r requirements.txt