ClemSummer commited on
Commit
9acc34b
Β·
1 Parent(s): ac9c6c1

Dockerfile needs wget

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -1,6 +1,9 @@
1
  # 🐍 Use official Python
2
  FROM python:3.11-slim
3
 
 
 
 
4
  WORKDIR /app
5
  COPY . .
6
 
 
1
  # 🐍 Use official Python
2
  FROM python:3.11-slim
3
 
4
+ # Install wget
5
+ RUN apt-get update && apt-get install -y wget
6
+
7
  WORKDIR /app
8
  COPY . .
9