Skip to content
Snippets Groups Projects
Dockerfile 274 B
Newer Older
  • Learn to ignore specific revisions
  • FROM php:latest
    
    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 && \