Add Supabase to Dockerfile

This commit is contained in:
Stan Girard 2024-04-27 15:20:39 +02:00
parent e28ef7d709
commit 74c0e2d72c

View File

@ -58,6 +58,9 @@ RUN pip install --no-cache-dir --upgrade pip && \
# Copy the rest of the application
COPY . .
# COPY Supabase from ../supabase in /code/supabase
COPY ../supabase /code/supabase
EXPOSE 5050
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "5050", "--workers", "6"]