diff --git a/Dockerfile b/Dockerfile index 2c315ce8..6a7e6303 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,4 +12,9 @@ COPY . ./ RUN rake dependencies +# Install nodejs +RUN curl -fsSL https://deb.nodesource.com/setup_current.x | bash && apt install nodejs --yes + +RUN npm ci + CMD ["rake", "dev"]