diff --git a/Dockerfile b/Dockerfile index 3093e89..f3dada4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,13 @@ -Code -+ -Requirements -+ -Instructions -= -Docker Image \ No newline at end of file +FROM python:3.11-slim + +WORKDIR /app + +COPY requirements.txt + +RUN pip install --no-cache-dir -r requirements.txt + +COPY.. + +EXPOSE 5000 + +CMD ["python", "app.py"] \ No newline at end of file