mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-26 00:46:23 +02:00
21 lines
424 B
Docker
21 lines
424 B
Docker
# Use official Python runtime as base image
|
|
FROM python:3.11-slim
|
|
|
|
# Set working directory in container
|
|
WORKDIR /app
|
|
|
|
# Copy requirements file
|
|
COPY requirements.txt .
|
|
|
|
# Install dependencies
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Copy project files
|
|
COPY . .
|
|
|
|
# Expose port if your app needs it (adjust as needed)
|
|
ENV HOSTNAME="0.0.0.0"
|
|
ENV PORT=3001
|
|
|
|
# Command to run the application
|
|
CMD ["python", "app.py"]
|