Logic06183/EPL_Fantasy_Optimizer
0
1FROM python:3.92 3WORKDIR /my_app_folder4 5COPY requirements.txt ./6RUN pip install --no-cache-dir -r requirements.txt7 8COPY . .9 10CMD [ "python", "app.py" ]11 1FROM python:3.92 3WORKDIR /my_app_folder4 5COPY requirements.txt ./6RUN pip install --no-cache-dir -r requirements.txt7 8COPY . .9 10CMD [ "python", "app.py" ]11