Skip to content
Snippets Groups Projects
Select Git revision
  • a6c5e83b79c9aff7a7b046c512e4e7bb3ef6d4e9
  • master default protected
2 results

global.scss

Blame
  • Forked from TO / Weby / piratipracuji.cz
    Source project has a limited visibility.
    Dockerfile 286 B
    FROM node:14.5-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/