Serving method changed to caddy

This commit is contained in:
2025-07-02 04:43:00 +00:00
parent 66834b7399
commit 5401318fc1
2 changed files with 5 additions and 6 deletions

View File

@ -13,7 +13,7 @@ RUN \
else echo "Lockfile not found." && exit 1; \
fi
FROM base as builder
FROM base AS builder
WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules
COPY /bookie ./
@ -33,8 +33,8 @@ RUN apt-get update && \
sed --in-place --expression='s/# en_IN UTF-8/en_IN UTF-8/' /etc/locale.gen && \
dpkg-reconfigure --frontend=noninteractive locales
ENV LANG en_IN
ENV LC_ALL en_IN
ENV LANG=en_IN
ENV LC_ALL=en_IN
# Install Poetry
RUN curl -sSL https://install.python-poetry.org | POETRY_HOME=/opt/poetry python - && \
@ -51,11 +51,10 @@ ARG INSTALL_DEV=false
RUN bash -c "if [ $INSTALL_DEV == 'true' ] ; then poetry install --no-root ; else poetry install --no-root --only main ; fi"
COPY /barker ./
COPY --from=builder /frontend/browser /app/frontend
COPY --from=builder /frontend/browser /app/static
ENV PYTHONPATH=/app
EXPOSE 80
VOLUME /frontend
RUN chmod 777 /app/docker-entrypoint.sh \
&& ln -s /app/docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh \

View File

@ -1,6 +1,6 @@
#!/bin/bash
set -e
cp /app/frontend/* /frontend
# cp /app/frontend/* /frontend
exec "$@"