tfrere commited on
Commit
1dea559
·
1 Parent(s): 03cf704
Files changed (2) hide show
  1. Dockerfile +2 -2
  2. pyproject.toml +0 -1
Dockerfile CHANGED
@@ -13,8 +13,8 @@ RUN apt-get update && apt-get install -y \
13
  && pip install --upgrade pip \
14
  && pip install poetry
15
 
16
- # Copy poetry configuration
17
- COPY pyproject.toml poetry.lock* ./
18
 
19
  # Install Python dependencies using Poetry
20
  RUN poetry config virtualenvs.create false \
 
13
  && pip install --upgrade pip \
14
  && pip install poetry
15
 
16
+ # Copy poetry configuration and README
17
+ COPY pyproject.toml poetry.lock* README.md ./
18
 
19
  # Install Python dependencies using Poetry
20
  RUN poetry config virtualenvs.create false \
pyproject.toml CHANGED
@@ -3,7 +3,6 @@ name = "minimal-browser-screenshot"
3
  version = "0.1.0"
4
  description = "Application qui prend des captures d'écran de sites web via un navigateur"
5
  authors = ["HuggingFace Team"]
6
- readme = "README.md"
7
 
8
  [tool.poetry.dependencies]
9
  python = "^3.10"
 
3
  version = "0.1.0"
4
  description = "Application qui prend des captures d'écran de sites web via un navigateur"
5
  authors = ["HuggingFace Team"]
 
6
 
7
  [tool.poetry.dependencies]
8
  python = "^3.10"