Fix: Dockerfile wouldnt build

This commit is contained in:
Amritanshu Agrawal 2023-08-04 16:19:23 +05:30
parent 91cf1fa04f
commit 1cd8c05f73
1 changed files with 2 additions and 2 deletions

View File

@ -9,8 +9,8 @@ RUN cd /app/overlord \
ADD https://git.tanshu.com/api/v1/repos/tanshu/brewman/tags /tags.json
RUN git clone --single-branch --depth 1 --branch latest https://git.tanshu.com/tanshu/brewman.git /app
WORKDIR /app/overlord
RUN mv /node_modules /app/bookie/ \
&& /app/bookie/node_modules/.bin/ng build
RUN mv /node_modules /app/overlord/ \
&& /app/overlord/node_modules/.bin/ng build
FROM python:3.11