thanthamky commited on
Commit
f695c95
1 Parent(s): 0bc8ce4

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -0
Dockerfile CHANGED
@@ -33,6 +33,11 @@ RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - && \
33
  RUN apt install -y tesseract-ocr && \
34
  apt install -y tesseract-ocr-tha
35
 
 
 
 
 
 
36
  # Create a working directory
37
  WORKDIR /app
38
 
 
33
  RUN apt install -y tesseract-ocr && \
34
  apt install -y tesseract-ocr-tha
35
 
36
+ # Install Node to enable keplergl
37
+ RUN npm cache clean -f && \
38
+ npm install -g n && \
39
+ n stable
40
+
41
  # Create a working directory
42
  WORKDIR /app
43