SeshSuperkartBackend / Dockerfile
Huggsh's picture
Upload 5 files
ba58dcd verified
raw
history blame contribute delete
98 Bytes
FROM python:3.9
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
CMD ["python", "app.py"]