diff --git a/Dockerfile b/Dockerfile index 72a241d..96cac62 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 \ diff --git a/barker/docker-entrypoint.sh b/barker/docker-entrypoint.sh index 645ab7d..18f9697 100644 --- a/barker/docker-entrypoint.sh +++ b/barker/docker-entrypoint.sh @@ -1,6 +1,6 @@ #!/bin/bash set -e -cp /app/frontend/* /frontend +# cp /app/frontend/* /frontend exec "$@"