Update Dockerfile
Browse files- 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
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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
|