File: Dockerfile

package info (click to toggle)
sploitscan 0.10.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 244 kB
  • sloc: python: 901; makefile: 6
file content (8 lines) | stat: -rw-r--r-- 190 bytes parent folder | download
1
2
3
4
5
6
7
8
FROM python:3.9-slim-buster

WORKDIR /app
COPY . /app
COPY sploitscan/config.json /app/config.json
RUN pip install --no-cache-dir -r requirements.txt

ENTRYPOINT ["python", "sploitscan.py"]