From a8cc9e60e498bb96179bf70d990e4ef94c2f87a7 Mon Sep 17 00:00:00 2001 From: Charles Ndirangu Date: Mon, 5 Feb 2024 13:01:04 +0300 Subject: [PATCH] Delete Dockerfile --- Dockerfile | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index a659eb6..0000000 --- a/Dockerfile +++ /dev/null @@ -1,12 +0,0 @@ -# Use an official Python runtime as a parent image -FROM python:3.8-slim - -# Set the working directory in the container -WORKDIR /app - -# Copy the current directory contents into the container at /app -COPY . /app - - -# Run app.py when the container launches -CMD ["python", "reconciler.py", "-s", "source.csv", "-t", "target.csv", "-o", "reconciliation.csv"]