
I am trying to include a facial recognition handling but I can't get to install it using requirements.txt
Build Log is attached I cant paste it since it is long.
Any help would be much appreciated...

Looks like it needs numpy but that needs extra OS level dependencies in Alpine. I think you can search online for how to solve that

Very much new to this

Could you guide me on what should i search

I will try to find a way after that

Numpy Alpine [error]

Alright thanks

FROM python:3.9-alpine
RUN apk add --no-cache
\ gcc
\ musl-dev
\ python3-dev
\ build-base
\ openblas-dev
\ freetype-dev
\ pkgconfig
\ gfortranCOPY requirements.txt /app/requirements.txt WORKDIR /app
RUN pip install --no-cache-dir -r requirements.txt
would i be able to add this to my dockerfile?

Unfortunately we do not allow overriding the Dockerfile on Cloud.
But we have plans to introduce a machine learning runtime really soon. So you should be able to run it.
Currently if you would like to do facial recognition, I recommend using an API from huggingface or so. But I assure you, the Python ML runtime is going to be ready soon 👍

Alright alright thanks for the help

You can run the install commands as part of the build step

[SOLVED] Can't install deepface library python
Recommended threads
- Function gives unauthorized error when w...
I am on free tier. I have function that has three attributes: 1. A stand alone attribute (required) 2. A many to one relationship attribute 3. A many to man...
- Issue with Appwrite Function Execution –...
Hi all, I'm encountering an issue when calling an Appwrite function from my Flutter app. **Environment:** ```Flutter SDK: 3.27.3 Appwrite Flutter SDK: 16.1.0```...
- Problem with login using Retool
I am using the Appwrite rest api to create an email session from Retool. My next api call is to create JWT. The call is failing because Retool is a closed envir...
