ar08 commited on
Commit
4a09323
·
verified ·
1 Parent(s): 3cae24d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +11 -2
Dockerfile CHANGED
@@ -12,10 +12,19 @@ WORKDIR /app
12
 
13
  # Copy the local directory's contents into the container at /app
14
  COPY ./ /app/
 
15
  # Update and install necessary packages
16
  RUN apt-get update && \
17
- apt-get install -y python3 python3-pip curl wget gnupg2 lsb-release nano virtualbox && \
18
- apt-get clean
 
 
 
 
 
 
 
 
19
 
20
  # Install Python dependencies (assuming requirements.txt is in the same directory)
21
  COPY requirements.txt /app/requirements.txt
 
12
 
13
  # Copy the local directory's contents into the container at /app
14
  COPY ./ /app/
15
+
16
  # Update and install necessary packages
17
  RUN apt-get update && \
18
+ apt-get install -y \
19
+ python3 \
20
+ python3-pip \
21
+ curl \
22
+ wget \
23
+ gnupg2 \
24
+ lsb-release \
25
+ nano \
26
+ virtualbox \
27
+ && apt-get clean
28
 
29
  # Install Python dependencies (assuming requirements.txt is in the same directory)
30
  COPY requirements.txt /app/requirements.txt