Anupam251272's picture
Create Dockerfile
bce8381 verified
raw
history blame contribute delete
191 Bytes
FROM python:3.10
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "multivariate-analysis-dataset.py"] # Replace with your script