build frontend

This commit is contained in:
jxxghp 2023-06-30 14:16:52 +08:00
parent 10b26b838e
commit 2cb1593a37
2 changed files with 2 additions and 1 deletions

View File

@ -32,7 +32,7 @@ jobs:
yarn && yarn build
cd ..
mkdir -p public
cp -f ./MoviePilot-Frontend/dist/* ./public/
cp -rf ./MoviePilot-Frontend/dist/* ./public/
rm -rf MoviePilot-Frontend
-

View File

@ -36,6 +36,7 @@ WORKDIR ${WORKDIR}
COPY . .
RUN apt-get update \
&& apt-get -y install musl-dev nginx \
&& mkdir -p /etc/nginx \
&& cp -f nginx.conf /etc/nginx/nginx.conf \
&& pip install -r requirements.txt \
&& python_ver=$(python3 -V | awk '{print $2}') \