Open-Hands / Dockerfile
startrz's picture
Update Dockerfile
c9d1147 verified
raw
history blame contribute delete
913 Bytes
# Use a base image that includes Python and necessary system dependencies
FROM nikolaik/python-nodejs:python3.10-nodejs20
# Set environment variables
ENV PORT=7860
ENV RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.13-nikolaik
# Install system dependencies
RUN apt-get update && apt-get install -y \
build-essential \
curl \
software-properties-common \
git \
&& rm -rf /var/lib/apt/lists/*
# Create and set working directory
WORKDIR /app
# Copy application files
COPY . /app/
# Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Install Node.js dependencies
RUN npm install
# Expose the port Hugging Face Spaces expects
EXPOSE 7860
# Set up healthcheck
HEALTHCHECK --interval=30s --timeout=30s --start-period=5s --retries=3 \
CMD curl -f http://localhost:7860/ || exit 1
# Command to run the application
CMD ["python", "app.py"]