diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 657fee3545..fa9474b791 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,5 +1,9 @@ FROM zklcdc/go-proxy-bingai:latest-with-pass +USER root + +RUN apt-get update && apt-get install wget curl -y + RUN wget https://github.com/Harry-zklcdc/go-proxy-bingai/releases/latest/download/go-proxy-bingai-linux-amd64.tar.gz -O go-proxy-bingai-linux-amd64.tar.gz && \ tar -zxvf go-proxy-bingai-linux-amd64.tar.gz && \ chmod +x go-proxy-bingai @@ -10,6 +14,8 @@ RUN wget https://github.com/Harry-zklcdc/go-bingai-pass/releases/latest/download RUN rm go-bingai-pass-linux-amd64.tar.gz go-proxy-bingai-linux-amd64.tar.gz +USER $GBP_USER + COPY supervisor.conf /etc/supervisor/conf.d/supervisor.conf EXPOSE 8080 45678 9005