codesearchBase / Dockerfile
Forrest99's picture
Create Dockerfile
7f7b229 verified
raw
history blame
133 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 5000
CMD ["python", "app.py"]