Skip to content

Version 3.0.0 - Hooks and node build support #32

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 16 commits into from
Mar 4, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add node to dockerfile
Signed-off-by: Riddhesh Sanghvi <riddhesh237@gmail.com>
  • Loading branch information
mrrobot47 committed Feb 24, 2022
commit d3cb3970da7b1ce298b4920a68477beb5eb7498c
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ RUN mkdir -p /composer && \
COPY composer.* /composer/
RUN cd /composer && composer install

RUN curl -sL https://deb.nodesource.com/setup_16.x | bash && \
apt install -y nodejs && \
rm -rf /var/lib/apt/lists/*

COPY deploy.php hosts.yml /
COPY *.sh /
RUN chmod +x /*.sh
Expand Down