Dockerfile 292 B

12345678910
  1. FROM ubuntu:21.10
  2. LABEL maintainer="Stille <[email protected]>"
  3. ENV VERSION 5.5.2
  4. RUN apt -y update && apt -y install curl && \
  5. curl -O https://raw.githubusercontent.com/sprov065/v2-ui/master/install.sh && chmod +x install.sh&& ./install.sh
  6. CMD [ "sh", "-c", "/usr/local/v2-ui/v2-ui"]