Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +5 -3
Dockerfile
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
FROM
|
2 |
|
3 |
RUN apk add --no-cache pcre2
|
4 |
|
@@ -16,8 +16,10 @@ RUN mkdir -p /var/log/nginx && \
|
|
16 |
|
17 |
WORKDIR /app
|
18 |
|
19 |
-
EXPOSE
|
20 |
|
21 |
RUN chmod 777 -R /app
|
22 |
|
23 |
-
|
|
|
|
|
|
1 |
+
FROM ahhhliu/cursor2api:latest
|
2 |
|
3 |
RUN apk add --no-cache pcre2
|
4 |
|
|
|
16 |
|
17 |
WORKDIR /app
|
18 |
|
19 |
+
EXPOSE 3001
|
20 |
|
21 |
RUN chmod 777 -R /app
|
22 |
|
23 |
+
ENTRYPOINT ["sh", "-c", "nginx]
|
24 |
+
|
25 |
+
CMD ["node" "run.js"]
|