| FROM ghcr.io/ibuhub/aistudio-to-api:latest | |
| # Remove VNC-related binaries from the prebuilt image | |
| RUN apt-get remove -y x11vnc xvfb websockify 2>/dev/null || true \ | |
| && apt-get autoremove -y \ | |
| && rm -rf /var/lib/apt/lists/* | |
| ENV API_KEYS=test123 | |
| COPY auth-0.json /app/configs/auth/auth-0.json | |
| EXPOSE 7860 |