jarvis / Dockerfile
xdragxt's picture
Create Dockerfile
fcf88e7 verified
raw
history blame
180 Bytes
FROM python:3.12-slim
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir --upgrade pip \
&& pip install --no-cache-dir -r requirements.txt
CMD ["python", "jarvis.py"]