Taylor commited on
Commit
4ee26f9
·
1 Parent(s): bf240a6

fix: switch to Docker SDK with python http.server

Browse files

Static SDK not serving files. Use minimal Docker with
python3 -m http.server instead.

Files changed (2) hide show
  1. Dockerfile +5 -0
  2. README.md +2 -2
Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM python:3.11-slim
2
+ WORKDIR /app
3
+ COPY index.html aether-engine.js ./
4
+ EXPOSE 7860
5
+ CMD ["python3", "-m", "http.server", "7860"]
README.md CHANGED
@@ -3,7 +3,7 @@ title: Aether Browser
3
  emoji: "\u26A1"
4
  colorFrom: blue
5
  colorTo: blue
6
- sdk: static
7
- app_file: index.html
8
  pinned: true
9
  ---
 
3
  emoji: "\u26A1"
4
  colorFrom: blue
5
  colorTo: blue
6
+ sdk: docker
7
+ app_port: 7860
8
  pinned: true
9
  ---