diff --git a/Dockerfile b/Dockerfile index dc608c8..3ccb388 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,6 +16,7 @@ ENV VIRTUAL_ENV=/opt/venv COPY requirements.txt ./ RUN /root/.cargo/bin/uv venv ${VIRTUAL_ENV} RUN /root/.cargo/bin/uv pip install --no-cache -r requirements.txt +RUN /root/.cargo/bin/uv pip uninstall -y json-fix || true FROM node:16 AS frontend WORKDIR /app diff --git a/README.md b/README.md index ed15da8..6439bab 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ The easiest way to get started is to use the docker image. This will give you a ```shell -docker-compose up -d +docker compose up -d ```