atikur-rabbi commited on
Commit
1a4b097
1 Parent(s): 7224f6f
Files changed (1) hide show
  1. Dockerfile +6 -1
Dockerfile CHANGED
@@ -1,4 +1,9 @@
1
- FROM node:12-slim
 
 
 
 
 
2
 
3
  # Create app directory
4
  WORKDIR /usr/src/app
 
1
+ FROM ubuntu:20.04
2
+
3
+ # Install nodejs
4
+ RUN apt-get update && apt-get install -y curl
5
+ RUN curl -sL https://deb.nodesource.com/setup_14.x | bash -
6
+ RUN apt-get install -y nodejs
7
 
8
  # Create app directory
9
  WORKDIR /usr/src/app