parthnuwal7 commited on
Commit
28acaaf
·
1 Parent(s): 66b9109

Fix Dockerfile: Remove software-properties-common package

Browse files

- Removed software-properties-common which is not available in python:3.9-slim
- Kept essential packages: build-essential, curl, git
- This should resolve the Docker build failure

Files changed (1) hide show
  1. Dockerfile +0 -1
Dockerfile CHANGED
@@ -6,7 +6,6 @@ WORKDIR /code
6
  RUN apt-get update && apt-get install -y \
7
  build-essential \
8
  curl \
9
- software-properties-common \
10
  git \
11
  && rm -rf /var/lib/apt/lists/*
12
 
 
6
  RUN apt-get update && apt-get install -y \
7
  build-essential \
8
  curl \
 
9
  git \
10
  && rm -rf /var/lib/apt/lists/*
11