Eric Xu commited on
Commit
e810ce8
·
unverified ·
1 Parent(s): 4798be2

Add wget to Dockerfile (required by HF Spaces dev tools)

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