skip to Main Content

run two python scripts with docker compose

My folder structure looked like this: My Dockerfile looked like this: FROM python:3.8-slim-buster WORKDIR /src COPY src/requirements.txt requirements.txt RUN pip install --no-cache-dir -r requirements.txt COPY src/ . CMD [ "python", "main.py"] When I ran these commands: docker build --tag FinTechExplained_Python_Docker…

VIEW QUESTION

cudf instllation issue on centos7

I'm new to rapids ai libraries. I've an existing conda environment yaml file where I'm using python 3.8.5, tensorflow 2.7.0, opencv-python-headless 4.5.5.62, numpy 1.22.2, pandas 1.4.1, pandas-profiling 3.1.0, seaborn 0.11.2, matplotlib 3.5.1, jupyterlab 3.2.9. I've added below 2 channels to…

VIEW QUESTION
Back To Top
Search