Some checks failed
Vulhub Format Check and Lint / format-check (push) Has been cancelled
Vulhub Format Check and Lint / markdown-check (push) Has been cancelled
Vulhub Docker Image CI / longtime-images-test (push) Has been cancelled
Vulhub Docker Image CI / images-test (push) Has been cancelled
14 lines
407 B
Docker
14 lines
407 B
Docker
FROM python:3.10
|
|
|
|
LABEL maintainer="phithon <root@leavesongs.com>"
|
|
|
|
COPY requirements.txt /tmp/requirements.txt
|
|
RUN set -ex \
|
|
&& pip install -r /tmp/requirements.txt
|
|
|
|
ENV PGADMIN_SETUP_EMAIL=vulhub@example.com PGADMIN_SETUP_PASSWORD=vulhub
|
|
COPY config_local.py /usr/local/lib/python3.10/site-packages/pgadmin4/config_local.py
|
|
|
|
WORKDIR /usr/local/lib/python3.10/site-packages/pgadmin4
|
|
CMD [ "pgadmin4" ]
|