Kekkai/chart/Dockerfile

10 lines
141 B
Text
Raw Normal View History

FROM python:3.13
WORKDIR /
COPY . .
RUN pip3 install --no-cache-dir --upgrade -r ./requirements.txt
EXPOSE 3030
CMD ["python", "main.py"]