MISASI commited on
Commit
f60a66c
·
verified ·
1 Parent(s): 54fdd71

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -1,8 +1,9 @@
1
  FROM ubuntu:latest
2
 
3
- RUN apt-get update && apt-get install -y wget
4
  RUN apt-get clean && apt-get update
5
- RUN apt-get install nodejs
 
6
  RUN wget https://github.com/dasasdsadsww/deeplx-serverless.git -O deeplxAI
7
  RUN node server.js
8
 
 
1
  FROM ubuntu:latest
2
 
3
+ RUN apt-get update && apt-get install -y wget && apt-get install -y curl
4
  RUN apt-get clean && apt-get update
5
+ RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash - &&\
6
+ RUN sudo apt-get install -y nodejs
7
  RUN wget https://github.com/dasasdsadsww/deeplx-serverless.git -O deeplxAI
8
  RUN node server.js
9