kenken999's picture
update
b97a3a5
raw
history blame contribute delete
266 Bytes
FROM python:3.11-slim
ENV PIP_NO_CACHE_DIR=true
WORKDIR /tmp
RUN apt-get update && apt-get install build-essential -y
COPY requirements.txt /tmp/requirements.txt
RUN pip install -r requirements.txt
WORKDIR /app
COPY . /app
ENTRYPOINT ["./babyagi.py"]
EXPOSE 8080