mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-30 13:10:47 +00:00
corrected requirements references in backend
This commit is contained in:
parent
1565b85639
commit
2f636fb1df
1 changed files with 2 additions and 2 deletions
|
|
@ -9,10 +9,10 @@ ENV PYTHONUNBUFFERED 1
|
||||||
WORKDIR var/task/Model
|
WORKDIR var/task/Model
|
||||||
|
|
||||||
# Install python dependencies
|
# Install python dependencies
|
||||||
COPY ./backend/requirements/requirements.txt ./requirements.txt
|
COPY ./backend/engine/requirements.txt ./requirements.txt
|
||||||
# Install and clean up temp caches
|
# Install and clean up temp caches
|
||||||
RUN pip install --upgrade pip \
|
RUN pip install --upgrade pip \
|
||||||
&& pip install -r backend/engine/requirements.txt && rm -rf /root/.cache
|
&& pip install -r requirements.txt && rm -rf /root/.cache
|
||||||
|
|
||||||
# Since we are not using a base AWS image, there is some additional setup required. We need to set up the runtime
|
# Since we are not using a base AWS image, there is some additional setup required. We need to set up the runtime
|
||||||
# interface client
|
# interface client
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue