Skip to content
Snippets Groups Projects
Commit 314ad42e authored by Cyril L'Orphelin's avatar Cyril L'Orphelin
Browse files

Merge branch 'master' of gitlab.in2p3.fr:cc-in2p3-dev/TMS

parents 7a5315ab 042234a7
No related branches found
No related tags found
No related merge requests found
......@@ -40,7 +40,7 @@ job_test:
- n stable
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH="$HOME/.yarn/bin:$PATH"
- yarn install
- yarn install --ignore-engines
- yarn encore dev
## Tests
......
......@@ -7,6 +7,8 @@ RUN apt-get update && apt-get install -y \
git \
curl \
unzip \
nodejs \
npm \
&& docker-php-ext-configure gd --with-freetype --with-jpeg \
&& docker-php-ext-install -j$(nproc) gd
......@@ -23,7 +25,6 @@ RUN rm -f /usr/local/etc/php/conf.d/xdebug.ini
WORKDIR /var/www/html
RUN git clone https://gitlab.in2p3.fr/cc-in2p3-dev/TMS tms
RUN ls -lah
WORKDIR /var/www/html/tms/tms
RUN mv .env.template .env
......@@ -38,8 +39,10 @@ RUN npm install -g n
RUN n stable
RUN curl -o- -L https://yarnpkg.com/install.sh | bash
RUN export PATH="$HOME/.yarn/bin:$PATH"
RUN /usr/bin/yarn install
RUN /usr/bin/yarn install --ignore-engines
RUN /usr/bin/yarn encore dev
EXPOSE 8000/tcp
CMD symfony server:start
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment