DeMaking commited on
Commit
6ed6bcc
·
verified ·
1 Parent(s): 4d2cb62

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile CHANGED
@@ -14,6 +14,10 @@ WORKDIR /app
14
  COPY --chown=user ./requirements.txt requirements.txt
15
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
16
 
 
 
 
 
17
  # Copy the app files
18
  COPY --chown=user . /app
19
 
 
14
  COPY --chown=user ./requirements.txt requirements.txt
15
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
16
 
17
+ # Install nslookup (dnsutils) for debugging
18
+ RUN apt-get update && apt-get install -y dnsutils
19
+
20
+
21
  # Copy the app files
22
  COPY --chown=user . /app
23