Skip to content
Snippets Groups Projects
Select Git revision
  • c18fbf9a2fbba964a8344e63eb2ee919bcf29f1a
  • master default protected
  • dependabot/pip/py-1.10.0
  • dependabot/pip/django-2.2.13
  • dependabot/pip/bleach-3.1.4
5 results

requirements.txt

Blame
  • This project manages its dependencies using pip. Learn more
    Dockerfile 284 B
    FROM node:13-alpine as build
    
    RUN mkdir -p /home/node/ui-styleguide/node_modules
    
    WORKDIR /home/node/ui-styleguide
    
    COPY package*.json ./
    
    RUN npm install
    
    COPY . .
    
    RUN npm run build
    
    # ---
    
    FROM nginx:alpine
    
    COPY --from=build /home/node/ui-styleguide/public /usr/share/nginx/html/