MistyClimateServer / Dockerfile
n0v33n
Added files
27e696a
raw
history blame contribute delete
283 Bytes
FROM python:3.12-slim
WORKDIR /app
RUN apt-get update && apt-get install -y \
gcc \
g++ \
libffi-dev \
libssl-dev \
python3-dev \
&& rm -rf /var/lib/apt/lists/*
COPY app.py .
RUN pip install --no-cache-dir requirements.txt
EXPOSE 7860
CMD ["python", "app.py"]