-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
34 lines (25 loc) · 857 Bytes
/
Dockerfile
File metadata and controls
34 lines (25 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Use Python 3.12 slim image as base
FROM python:3.12-slim
# Set working directory
WORKDIR /app
# Set default environment variables
ENV MONGODB_DATABASE=GoEmotion \
MONGODB_COLLECTION=vectorizedText \
PORT=8080
# Install build dependencies and clean up in the same layer
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements files
COPY requirements.txt .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy the application code
COPY app/ app/
# Add healthcheck
HEALTHCHECK --interval=30s --timeout=3s \
CMD curl -f http://localhost:${PORT}/health || exit 1
# Expose the port that FastAPI will run on
EXPOSE ${PORT}
# Start the FastAPI application with uvicorn
CMD exec uvicorn app.main:app --host 0.0.0.0 --port ${PORT}