Skip to content

Commit

Permalink
UPDATE: add edpoint test
Browse files Browse the repository at this point in the history
  • Loading branch information
mazzasaverio committed Feb 6, 2024
1 parent 4072a45 commit b2600b2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Use an official Python runtime with NVIDIA CUDA support
FROM nvidia/cuda:11.2.2-cudnn8-runtime-ubuntu20.04
FROM python:3.9-slim


WORKDIR /app

# Copy your application files
COPY . /app

# Install Python and FastAPI dependencies
RUN apt-get update && apt-get install -y python3-pip && \
pip3 install --no-cache-dir -r requirements.txt
RUN pip install --no-cache-dir -r requirements.txt

EXPOSE 8000

Expand Down

0 comments on commit b2600b2

Please sign in to comment.