Skip to content

Commit

Permalink
fix(Dockerfile): fixed error, where README.md was not copied
Browse files Browse the repository at this point in the history
  • Loading branch information
straightchlorine committed Jan 25, 2025
1 parent 8db00c8 commit 14936e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ RUN apt-get update \
&& apt-get install -y git \
&& rm -rf /var/lib/apt/lists/*

COPY pyproject.toml ./
RUN pip install --no-cache-dir .

COPY . .
RUN pip install --no-cache-dir .

CMD [ "python", "quantum_pipeline.py", "-f", "data/molecules.json", "--max-iterations", "1", "--kafka" ]
CMD [ "python", "quantum_pipeline.py", "-f", "data/molecules.json", "--max-iterations", "100", "--kafka" ]
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ maintainers = [
{name = 'Piotr Krzysztof', email = 'piotrlis555@gmail.com'}
]

version = "1.0.3"
version = "1.0.4"
requires-python = ">=3.10,<3.13"
license = {text = "MIT"}
readme = "README.md"
Expand Down

0 comments on commit 14936e9

Please sign in to comment.