删除文件 cve/django/2022/Dockerfile

This commit is contained in:
王倩云 2023-03-17 07:20:13 +00:00 committed by Re3et
parent 314416364c
commit 6acadf508c
1 changed files with 0 additions and 18 deletions

View File

@ -1,18 +0,0 @@
FROM python:3
RUN apt-get update -y
RUN apt-get install libpq-dev -y
RUN pip3 install django==4.0.5
RUN pip3 install psycopg2==2.8.6
RUN django-admin startproject app
WORKDIR /app
RUN python3 manage.py startapp vuln
COPY settings.py app/settings.py
COPY models.py vuln/models.py
COPY views.py vuln/views.py
COPY urls.py app/urls.py
EXPOSE 8000