Rapidfireop commited on
Commit
807cda2
·
verified ·
1 Parent(s): 9fb0110

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +11 -0
Dockerfile ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM ghcr.io/heyputer/puter:latest
2
+
3
+ RUN apt-get update && apt-get install -y curl
4
+
5
+ COPY puter.config.json /etc/puter/config.json
6
+ COPY keepalive.sh /keepalive.sh
7
+ RUN chmod +x /keepalive.sh
8
+
9
+ EXPOSE 7860
10
+
11
+ CMD bash -c "/keepalive.sh & node /app/packages/backend/src/main.js"