Chore: Updated to Angular 16

This commit is contained in:
2023-07-23 09:01:18 +05:30
parent 9589081046
commit 78d98f979d
99 changed files with 416 additions and 232 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/overlord/ \
&& /app/overlord/node_modules/.bin/ng build
RUN mv /node_modules /app/bookie/ \
&& /app/bookie/node_modules/.bin/ng build
FROM python:3.11
@ -27,7 +27,7 @@ ENV LANG en_IN
ENV LC_ALL en_IN
# Install Poetry
RUN curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py | POETRY_HOME=/opt/poetry python && \
RUN curl -sSL https://install.python-poetry.org | POETRY_HOME=/opt/poetry python - && \
cd /usr/local/bin && \
ln -s /opt/poetry/bin/poetry && \
poetry config virtualenvs.create false