Commit ·
a9d25c7
1
Parent(s): 2a473f0
chore(docker): add wget to system dependencies in Dockerfile
Browse filesAdded `wget` to the list of system dependencies in the Dockerfile to enhance the utility of the container environment. This change ensures that both `curl` and `wget` are available for handling HTTP requests, which can be useful for various tasks during the build and runtime phases.
This update does not affect the application logic but improves the flexibility of the Docker environment.
- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -4,7 +4,7 @@ WORKDIR /app
|
|
| 4 |
|
| 5 |
# Install system dependencies
|
| 6 |
RUN apt-get update && apt-get install -y \
|
| 7 |
-
curl \
|
| 8 |
&& rm -rf /var/lib/apt/lists/*
|
| 9 |
|
| 10 |
# Install Python dependencies
|
|
|
|
| 4 |
|
| 5 |
# Install system dependencies
|
| 6 |
RUN apt-get update && apt-get install -y \
|
| 7 |
+
curl wget\
|
| 8 |
&& rm -rf /var/lib/apt/lists/*
|
| 9 |
|
| 10 |
# Install Python dependencies
|