Update Dockerfile
Browse files- Dockerfile +5 -2
Dockerfile
CHANGED
@@ -1,6 +1,9 @@
|
|
1 |
-
FROM node:16-
|
2 |
ENV PORT 7860
|
3 |
-
RUN
|
|
|
|
|
|
|
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 |
|