srbhr / Resume-Matcher

Resume Matcher is an open source, free tool to improve your resume. It works by using language models to compare and rank resumes with job descriptions.
https://www.resumematcher.fyi/
Apache License 2.0
4.91k stars 2.1k forks source link

Enhance: optimize file copies in docker build #223

Open TravisYeah opened 9 months ago

TravisYeah commented 9 months ago

All files were copied at the start of the file which makes the entire build restart which takes a long time just to redo dependencies installations. This change only copies files required for that step and waits to copy the rest until the end.

Pull Request Title

Enhance: optimize file copies in docker build

Related Issue

Description

All files were copied at the start of the file which makes the entire build restart which takes a long time just to redo dependencies installations. This change only copies files required for that step and waits to copy the rest until the end.

Type

Proposed Changes

Screenshots / Code Snippets (if applicable)

How to Test

  1. docker-compose up
  2. Change a file that is needed for any step
  3. docker-compose build
  4. docker-compose up

Checklist

Additional Information