Convert2Color_Image / Dockerfile
shiue2000's picture
Upload 7 files
f804ab9 verified
raw
history blame contribute delete
145 Bytes
FROM python:3.10-slim
RUN pip install --upgrade pip
RUN pip install mercury==2.4.3
COPY . /code
WORKDIR /code
CMD ["mercury", "run", "app.py"]