diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 06807d7..4646e7f 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,7 +1,9 @@ FROM mcr.microsoft.com/devcontainers/base:ubuntu +# Set non-interactive mode for APT ENV DEBIAN_FRONTEND=noninteractive +# Install necessary packages RUN apt-get update && apt-get install -y --no-install-recommends \ build-essential \ curl \ @@ -14,7 +16,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ libpq-dev && \ rm -rf /var/lib/apt/lists/* +# Reset DEBIAN_FRONTEND if needed ENV DEBIAN_FRONTEND=dialog +# Set environment variables ENV PATH="/root/.cargo/bin:${PATH}" ENV PYTHONPATH="${PYTHONPATH}:/workspace"