superkart-backend / Dockerfile
omm7's picture
Fresh backend setup with Flask, Docker, and correct API
b7ea445
raw
history blame contribute delete
105 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
CMD ["python", "app.py"]