You've already forked Travel-Agent
init: Initial project setup
This commit is contained in:
+17
@@ -0,0 +1,17 @@
|
||||
FROM python:3.12-slim
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# Copy requirements file
|
||||
COPY requirements/prod.txt .
|
||||
|
||||
# Install Python dependencies
|
||||
RUN pip install --no-cache-dir -r prod.txt
|
||||
|
||||
# Copy the rest of the application files
|
||||
COPY . .
|
||||
|
||||
# Apply migrations
|
||||
# RUN alembic -c app/alembic.ini upgrade head
|
||||
|
||||
CMD ["python", "-m", "app"]
|
||||
Reference in New Issue
Block a user