14 lines
199 B
Docker
14 lines
199 B
Docker
FROM python:3.10-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY app.py schema.sql requirements.txt ./
|
|
COPY templates ./templates
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
EXPOSE 5000
|
|
|
|
CMD ["python", "app.py"]
|
|
|