Spaces:
Build error
Build error
File size: 913 Bytes
c9d1147 6efff3a c9d1147 6efff3a c9d1147 a6d76a1 c9d1147 6efff3a c9d1147 | 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 35 36 | # 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"] |