From 3969d3e28a33a1e6a001f6a5c366e65a80997b9d Mon Sep 17 00:00:00 2001 From: wy580477 <98247050+wy580477@users.noreply.github.com> Date: Wed, 26 Jun 2024 14:30:47 +0800 Subject: [PATCH] fix build error --- Dockerfile | 4 ++-- Dockerfile.lite | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1e83618..a2a9eb9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:lts-alpine as builder +FROM node:lts-alpine AS builder WORKDIR /metube @@ -46,7 +46,7 @@ RUN apk add --no-cache --update curl jq ffmpeg runit tzdata fuse3 p7zip bash fin && apk add --no-cache --update --virtual .build-deps git curl-dev gcc g++ libffi-dev musl-dev jpeg-dev \ && pip install --no-cache-dir pipenv \ && git clone https://github.com/alexta69/metube \ - && mv ./metube/Pipfile* ./metube/app ./metube/favicon ./ \ + && mv ./metube/Pipfile* ./metube/app ./ \ && pipenv install --system --deploy --clear \ && pip uninstall pipenv -y \ && pipx install --pip-args='--no-cache-dir' pyload-ng[plugins] \ diff --git a/Dockerfile.lite b/Dockerfile.lite index 26abaea..eb5e99f 100644 --- a/Dockerfile.lite +++ b/Dockerfile.lite @@ -1,4 +1,4 @@ -FROM node:lts-alpine as builder +FROM node:lts-alpine AS builder WORKDIR /metube @@ -45,7 +45,7 @@ RUN apk add --no-cache --update curl ffmpeg jq runit tzdata fuse3 bash findutils && apk add --no-cache --update --virtual .build-deps git gcc g++ musl-dev \ && pip install --no-cache-dir pipenv \ && git clone https://github.com/alexta69/metube \ - && mv ./metube/Pipfile* ./metube/app ./metube/favicon ./ \ + && mv ./metube/Pipfile* ./metube/app ./ \ && pipenv install --system --deploy --clear \ && pip uninstall pipenv -y \ && apk del .build-deps \