Skip to content
Snippets Groups Projects
Select Git revision
  • 8f3dab353245e98f9acc7342e79b2301e9c06a54
  • master default protected
  • csv_export
  • ndex
  • v1.1.18-rc2
  • v1.1.17
  • v1.1.16
  • v1.1.16-rc12
  • v1.1.16-rc11
  • v1.1.16-rc10
  • v1.1.16-rc9
  • v1.1.16-rc8
  • v1.1.16-rc7
  • v1.1.16-rc4
  • v1.1.16-rc3
  • v1.1.16-rc1
  • v1.1.6-rc1
  • v1.1.15
  • v1.1.15-rc7
  • v1.1.15-rc6
  • v1.1.15-rc3
  • v1.1.15-rc1
  • v1.1.14
  • v1.1.13
24 results

explorer-page.component.html

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Dockerfile.prod 440 B
    FROM nginx
    
    RUN apt-get update
    RUN apt-get install -y curl
    
    RUN curl -sL https://deb.nodesource.com/setup_10.x | bash
    
    RUN apt-get install -y nodejs
    
    COPY package.json /app/
    COPY package-lock.json /app/
    
    WORKDIR /app/
    
    RUN npm install
    
    COPY . /app/
    
    RUN npm run build -- --prod --base-href=/covex/
    
    RUN cp -r dist/netex/* /usr/share/nginx/html/
    
    COPY nginx/default.conf /etc/nginx/conf.d/
    COPY nginx/htpasswd /etc/nginx/htpasswd
    
    EXPOSE 80