anyisalin's picture
init commit
35cd3b9
raw
history blame contribute delete
110 Bytes
FROM python:3.11.1
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
CMD ["python", "app.py"]