File: Dockerfile

package info (click to toggle)
wfuzz 3.1.0-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,648 kB
  • sloc: python: 13,161; makefile: 59; sh: 4
file content (5 lines) | stat: -rw-r--r-- 100 bytes parent folder | download | duplicates (4)
1
2
3
4
5
FROM python:3.6-alpine
ADD . /code
WORKDIR /code
EXPOSE 8000/tcp
CMD ["python", "simple_server.py"]