AITOOL / Dockerfile
NandanData's picture
Update Dockerfile
dfd2213 verified
raw
history blame contribute delete
239 Bytes
FROM python:3.12-slim
RUN apt-get update && \
apt-get install -y gcc g++ libpq-dev python3-dev libffi-dev build-essential
WORKDIR /home/user/app
COPY --chown=user requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt