theelvace commited on
Commit
1e3d077
·
1 Parent(s): 47877d1

Install curl for weather fetch

Browse files
Files changed (2) hide show
  1. .gitignore +0 -1
  2. Dockerfile +2 -1
.gitignore CHANGED
@@ -4,4 +4,3 @@ logs/
4
  __pycache__/
5
  *.zip
6
  .env
7
- models/*.joblib
 
4
  __pycache__/
5
  *.zip
6
  .env
 
Dockerfile CHANGED
@@ -4,7 +4,8 @@ WORKDIR /app
4
 
5
  RUN apt-get update && apt-get install -y --no-install-recommends \
6
  build-essential \
7
- git && \
 
8
  rm -rf /var/lib/apt/lists/*
9
 
10
  COPY requirements.txt .
 
4
 
5
  RUN apt-get update && apt-get install -y --no-install-recommends \
6
  build-essential \
7
+ git \
8
+ curl && \
9
  rm -rf /var/lib/apt/lists/*
10
 
11
  COPY requirements.txt .