AurelioAguirre commited on
Commit
2f91434
·
1 Parent(s): 6bb3a38

Fixing wget issue

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -4
Dockerfile CHANGED
@@ -4,11 +4,13 @@ FROM python:3.10-slim
4
  # Set working directory
5
  WORKDIR /app
6
 
7
- # Install git and required system dependencies
8
  RUN apt-get update && \
9
- apt-get install -y git && \
10
- apt-get clean && \
11
- rm -rf /var/lib/apt/lists/*
 
 
12
 
13
  # Create cache directory and set permissions
14
  RUN mkdir -p /app/.cache/huggingface && \
 
4
  # Set working directory
5
  WORKDIR /app
6
 
7
+ # Install git, wget, and required system dependencies
8
  RUN apt-get update && \
9
+ apt-get install -y \
10
+ git \
11
+ wget \
12
+ && apt-get clean \
13
+ && rm -rf /var/lib/apt/lists/*
14
 
15
  # Create cache directory and set permissions
16
  RUN mkdir -p /app/.cache/huggingface && \