From d14aba12027c3e4b912a23e25dbb32b9e1ba8385 Mon Sep 17 00:00:00 2001 From: Amritanshu Date: Tue, 5 May 2026 08:41:23 +0000 Subject: [PATCH] Fix: Typo in Dockerfile --- Dockerfile | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3fbdb11e..307817be 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,13 +33,10 @@ RUN \ FROM python:3.14-slim AS runner LABEL maintainer="Amritanshu " -RUN apt update \ - && apt install -y --no-install-recommends curl \ - && rm -rf /var/lib/apt/lists/* \ - apt update && \ - apt install -y locales && \ - sed --in-place --expression='s/# en_IN UTF-8/en_IN UTF-8/' /etc/locale.gen && \ - dpkg-reconfigure --frontend=noninteractive locales \ +RUN apt-get update \ + && apt-get install -y --no-install-recommends curl locales \ + && sed --in-place --expression='s/# en_IN UTF-8/en_IN UTF-8/' /etc/locale.gen \ + && dpkg-reconfigure --frontend=noninteractive locales \ && rm -rf /var/lib/apt/lists/* ENV LANG=en_IN @@ -79,7 +76,7 @@ COPY --from=builder /frontend/browser /app/static # Sync the project # Ref: https://docs.astral.sh/uv/guides/integration/docker/#intermediate-layers RUN --mount=type=cache,target=/root/.cache/uv \ - --mount=type=bind,source=brtewman/uv.lock,target=uv.lock \ + --mount=type=bind,source=brewman/uv.lock,target=uv.lock \ --mount=type=bind,source=brewman/pyproject.toml,target=pyproject.toml \ uv sync --locked @@ -96,4 +93,4 @@ ENTRYPOINT ["docker-entrypoint.sh"] HEALTHCHECK --interval=30s --timeout=5s --start-period=30s --retries=3 \ CMD curl -fsS http://localhost/health || kill -s 15 1 -CMD ["gunicorn", "brtewman.main:app", "--worker-class", "uvicorn.workers.UvicornWorker", "--config", "./gunicorn.conf.py", "--log-config", "./logging.conf"] +CMD ["gunicorn", "brewman.main:app", "--worker-class", "uvicorn.workers.UvicornWorker", "--config", "./gunicorn.conf.py", "--log-config", "./logging.conf"]