Skip to content

Commit

Permalink
fix(dev): change ruby sass to npm sass to fix deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
krishnans2006 authored and shahsalonik committed Sep 9, 2022
1 parent 3ce97cc commit b2646ab
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions config/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,11 @@ COPY requirements.txt .

RUN apt-get -y update && \
apt-get -y clean && \
apt-get -y install git python3 python3-pip python-is-python3 \
libpq-dev ruby-full rubygems libmagic1 && gem install sass && \
apt-get -y install git curl python3 python3-pip python-is-python3 \
libpq-dev ruby-full libmagic1 && \
curl -sL https://deb.nodesource.com/setup_18.x | bash && \
apt-get install nodejs && \
npm install -g sass && \
pip3 install pipenv && \
ln -s /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone && \
DEBIAN_FRONTEND=noninteractive apt-get -y install krb5-user kinit && \
Expand Down

0 comments on commit b2646ab

Please sign in to comment.