添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
帅气的青蛙  ·  LINE Front-end ...·  2 周前    · 
卖萌的杯子  ·  App requests ...·  2 周前    · 
耍酷的柳树  ·  在UIA中按价值选择要素·  2 年前    · 
  • databases: n/a
  • Programming language and version: Dockerfile
  • Link to your project on Github: analythium/shinyproxy-demo
  • Your issue

    Describe here your issue

    I could add the new app based on the Dockerfile and all works fine with the qovery.io subdomain: z502fb459-ze8ec7a30-gtw

    I added a CNAME to my DNS pointing to this subdomain, but when I visit the URL ( qovery.deanapi.com ) it shows default backend - 404 . I have waited patiently for the DNS to propagate, but no improvement over 2 days.

    Dockerfile content (if any)

    FROM rocker/r-base:latest
    RUN apt-get update && apt-get install -y --no-install-recommends \
        sudo \
        pandoc \
        pandoc-citeproc \
        libcurl4-gnutls-dev \
        libcairo2-dev \
        libxt-dev \
        libssl-dev \
        libssh2-1-dev \
        && rm -rf /var/lib/apt/lists/*
    RUN install.r shiny intrval
    RUN echo "local(options(shiny.port = 3838, shiny.host = '0.0.0.0'))" > /usr/lib/R/etc/Rprofile.site
    RUN addgroup --system app && adduser --system --ingroup app app
    WORKDIR /home/app
    COPY app .
    RUN chown app:app -R /home/app
    USER app
    EXPOSE 3838
    CMD ["R", "-e", "shiny::runApp('/home/app')"]