diff --git a/.devcontainer/docker-compose.override.yaml b/.devcontainer/docker-compose.override.yaml index dabd8ca7..979bf48f 100644 --- a/.devcontainer/docker-compose.override.yaml +++ b/.devcontainer/docker-compose.override.yaml @@ -6,7 +6,7 @@ services: context: . dockerfile: Dockerfile volumes: - - .:/workspace:cached + - ../:/workspace:cached command: sleep infinity depends_on: redis: diff --git a/application/Dockerfile b/application/Dockerfile index 27213072..308b721b 100644 --- a/application/Dockerfile +++ b/application/Dockerfile @@ -6,7 +6,6 @@ ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && \ apt-get install -y software-properties-common && \ add-apt-repository ppa:deadsnakes/ppa && \ -# Install necessary packages and Python apt-get update && \ apt-get install -y --no-install-recommends gcc wget unzip libc6-dev python3.12 python3.12-venv && \ rm -rf /var/lib/apt/lists/* @@ -49,7 +48,6 @@ FROM ubuntu:24.04 as final RUN apt-get update && \ apt-get install -y software-properties-common && \ add-apt-repository ppa:deadsnakes/ppa && \ -# Install Python apt-get update && apt-get install -y --no-install-recommends python3.12 && \ ln -s /usr/bin/python3.12 /usr/bin/python && \ rm -rf /var/lib/apt/lists/*