Neon-tech commited on
Commit
e094d24
·
verified ·
1 Parent(s): 558b3b5

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -2,6 +2,9 @@ FROM python:3.11-slim
2
 
3
  WORKDIR /app
4
 
 
 
 
5
  RUN apt-get update && apt-get install -y --no-install-recommends \
6
  gcc && rm -rf /var/lib/apt/lists/*
7
 
 
2
 
3
  WORKDIR /app
4
 
5
+ RUN apt-get update && \
6
+ apt-get install -y wget
7
+
8
  RUN apt-get update && apt-get install -y --no-install-recommends \
9
  gcc && rm -rf /var/lib/apt/lists/*
10