From f00b2c894953c13734af565a14ed01bc71fba691 Mon Sep 17 00:00:00 2001 From: Douwe M Osinga Date: Fri, 8 Nov 2024 01:05:36 +0100 Subject: [PATCH] uninstall json-fix --- Dockerfile | 1 + README.md | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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 ```