edwagbb commited on
Commit
e97a078
·
verified ·
1 Parent(s): 622d532

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -2
Dockerfile CHANGED
@@ -1,6 +1,9 @@
1
- FROM node:16-alpine
2
  ENV PORT 7860
3
- RUN apk update && apk upgrade && apk add git wget
 
 
 
4
  RUN chmod -R u+rwx,g+rwx,o+rwx /tmp
5
  ENV localrepoPath /tmp/okok
6
 
 
1
+ FROM node:16-bullseye
2
  ENV PORT 7860
3
+ RUN apt-get update && \
4
+ apt-get upgrade -y && \
5
+ apt-get install -y git wget curl && \
6
+ apt-get clean
7
  RUN chmod -R u+rwx,g+rwx,o+rwx /tmp
8
  ENV localrepoPath /tmp/okok
9