kunatibala101/tech-stack-advisor
0
1FROM python:3.11-slim2 3WORKDIR /app4 5COPY requirements.txt .6RUN pip install --no-cache-dir -r requirements.txt7 8COPY . .9 10EXPOSE 786011 12CMD ["python", "app.py"]1FROM python:3.11-slim2 3WORKDIR /app4 5COPY requirements.txt .6RUN pip install --no-cache-dir -r requirements.txt7 8COPY . .9 10EXPOSE 786011 12CMD ["python", "app.py"]