Create Dockerfile
Browse files- Dockerfile +7 -0
Dockerfile
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM node:20
|
| 2 |
+
WORKDIR /app
|
| 3 |
+
RUN rm -rf /app/*
|
| 4 |
+
RUN git clone https://github.com/ReirLair/frun.git /app
|
| 5 |
+
RUN npm install express axios
|
| 6 |
+
EXPOSE 7860
|
| 7 |
+
CMD ["node", "app.js"]
|