From 071ac4395e08731d70be1a8b7f7bc42198ba091c Mon Sep 17 00:00:00 2001 From: Ehsan Momeni Bashusqeh Date: Mon, 15 Jul 2024 15:57:18 +0330 Subject: [PATCH] Create Dockerfile (#6) --- Dockerfile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..58d753f --- /dev/null +++ b/Dockerfile @@ -0,0 +1,17 @@ +# Use an official Python runtime as a parent image +FROM python:3.9 + +# Set the working directory +WORKDIR /fuzz + +# Copy the requirements file into the container +COPY requirements.txt . + +# Install the required packages +RUN pip install --no-cache-dir -r requirements.txt + +# Copy the rest of your application code into the container +COPY . . + +# Run the fuzzing tests +ENTRYPOINT ["python", "pyats_addvlan_ossfuzz.py"]