maslionok commited on
Commit
8caa167
·
1 Parent(s): a94dbf2
Files changed (1) hide show
  1. Dockerfile +1 -5
Dockerfile CHANGED
@@ -8,10 +8,9 @@ WORKDIR /app
8
 
9
  # Install dependencies
10
  RUN apt-get update && apt-get install -y --no-install-recommends \
11
- openjdk-17-jre-headless \
12
  build-essential \
13
  curl \
14
- && apt-get clean \
15
  && rm -rf /var/lib/apt/lists/*
16
 
17
  # Create cache directory and set permissions
@@ -20,9 +19,6 @@ RUN mkdir -p /tmp/.cache/huggingface && chmod -R 777 /tmp/.cache
20
  # Copy app files
21
  COPY . .
22
 
23
- # Copy logo.jpeg file
24
- COPY logo.jpeg /app/logo.jpeg
25
-
26
  # Upgrade pip and install packages
27
  RUN pip install --upgrade pip
28
  RUN pip install "impresso_pipelines[solrnormalization]==0.4.6.6"
 
8
 
9
  # Install dependencies
10
  RUN apt-get update && apt-get install -y --no-install-recommends \
11
+ openjdk-17-jdk \
12
  build-essential \
13
  curl \
 
14
  && rm -rf /var/lib/apt/lists/*
15
 
16
  # Create cache directory and set permissions
 
19
  # Copy app files
20
  COPY . .
21
 
 
 
 
22
  # Upgrade pip and install packages
23
  RUN pip install --upgrade pip
24
  RUN pip install "impresso_pipelines[solrnormalization]==0.4.6.6"