Skip to content
Snippets Groups Projects
Commit 8216e0b5 authored by Hakan EBABIL's avatar Hakan EBABIL
Browse files

add install symfony on docker

parent c0fcfcaa
Branches
Tags
No related merge requests found
...@@ -11,11 +11,15 @@ RUN mkdir -p $COMPOSER_HOME && chmod -R 777 $COMPOSER_HOME && curl -sS https://g ...@@ -11,11 +11,15 @@ RUN mkdir -p $COMPOSER_HOME && chmod -R 777 $COMPOSER_HOME && curl -sS https://g
# Install NPM # Install NPM
RUN curl -sL https://deb.nodesource.com/setup_10.x | bash RUN curl -sL https://deb.nodesource.com/setup_10.x | bash
RUN apt-get update && apt-get install -y nodejs RUN apt-get update && apt-get install -y nodejs wget git
# Install Sass # Install Sass
RUN npm install -g sass RUN npm install -g sass
# Install symfon
RUN wget https://get.symfony.com/cli/installer -O - | bash &&\
export PATH="$HOME/.symfony/bin:$PATH"
RUN mkdir /srv/app RUN mkdir /srv/app
COPY vhost.conf /etc/apache2/sites-available/000-default.conf COPY vhost.conf /etc/apache2/sites-available/000-default.conf
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment