diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000..1d4c64e3c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,20 @@ +# Use an official Python runtime as the base image +FROM python:2 + +# Set the working directory in the container +WORKDIR /src/frontEnd + +# Copy the requirements file into the container +COPY requirements.txt . + +# Install the Python dependencies +RUN pip install --no-cache-dir -r requirements.txt + +# Copy the application code into the container +COPY . . + +# Expose a port if your application needs it +EXPOSE 8000 + +# Define the command to run your application +CMD ["python", "Application.py"] diff --git a/requirements.txt b/requirements.txt index 5ff1f9526..83f153c82 100644 Binary files a/requirements.txt and b/requirements.txt differ