constellaration-bench / Dockerfile
cgeorgiaw's picture
cgeorgiaw HF Staff
first commit
281711d
raw
history blame
287 Bytes
FROM python:3.10-slim
WORKDIR /app
RUN apt-get update && apt-get install -y \
build-essential \
cmake \
libnetcdf-dev \
&& rm -rf /var/lib/apt/lists/*
COPY . .
RUN pip install -r requirements.txt
EXPOSE 7860
ENV GRADIO_SERVER_NAME="0.0.0.0"
CMD ["python", "app.py"]