brendon-ai commited on
Commit
a1ab2ef
·
verified ·
1 Parent(s): 428c6da

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -7,7 +7,7 @@ ENV DEBIAN_FRONTEND=noninteractive
7
  # Set working directory
8
  WORKDIR /app
9
 
10
- # Install system dependencies
11
  RUN apt-get update && apt-get install -y \
12
  curl \
13
  python3 \
@@ -16,8 +16,8 @@ RUN apt-get update && apt-get install -y \
16
  wget \
17
  ca-certificates \
18
  sudo \
19
- dos2unix \ # <--- CORRECTLY PLACED: Install dos2unix
20
- git \ # <--- CORRECTLY PLACED: Install git
21
  && rm -rf /var/lib/apt/lists/*
22
 
23
  # Create and activate virtual environment
 
7
  # Set working directory
8
  WORKDIR /app
9
 
10
+ # Install system dependencies including dos2unix and git
11
  RUN apt-get update && apt-get install -y \
12
  curl \
13
  python3 \
 
16
  wget \
17
  ca-certificates \
18
  sudo \
19
+ dos2unix \
20
+ git \
21
  && rm -rf /var/lib/apt/lists/*
22
 
23
  # Create and activate virtual environment