Skip to content

Commit

Permalink
Create Dockerfile (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
emomeni authored Jul 15, 2024
1 parent c5627a7 commit 071ac43
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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"]

0 comments on commit 071ac43

Please sign in to comment.