Skip to content
Snippets Groups Projects
Dockerfile 275 B
Newer Older
  • Learn to ignore specific revisions
  • 
    COPY --from=composer /usr/bin/composer /usr/bin/composer
    
    
    RUN curl -sL https://deb.nodesource.com/setup_12.x | bash -
    
    RUN apt-get update && \
        apt-get install -y nodejs
    
    
    RUN apt-get update && \
        apt-get upgrade -y && \