claude-3-plugins / Dockerfile
MeowXD's picture
Update Dockerfile
02acfbf verified
raw
history blame contribute delete
115 Bytes
FROM python:3.9
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir --upgrade flask
CMD ["python", "main.py"]