pup-py commited on
Commit
16d5516
·
1 Parent(s): 03e0ff6

3.13; pause ping

Browse files
Files changed (3) hide show
  1. Dockerfile +2 -2
  2. fetch.py +2 -1
  3. pyproject.toml +1 -1
Dockerfile CHANGED
@@ -12,8 +12,8 @@ RUN mkdir $HOME/puppy
12
  WORKDIR $HOME/puppy
13
 
14
  # install puppy
15
- RUN curl -fsSL https://raw.githubusercontent.com/liquidcarbon/puppy/main/pup.sh | bash -s 3.12
16
- RUN pup --help # pixi returns status 2 with no arguments
17
 
18
  # setup app env
19
  RUN pup new appenv
 
12
  WORKDIR $HOME/puppy
13
 
14
  # install puppy
15
+ RUN curl -fsSL https://raw.githubusercontent.com/liquidcarbon/puppy/main/pup.sh | bash -s 3.13
16
+ RUN pup --help
17
 
18
  # setup app env
19
  RUN pup new appenv
fetch.py CHANGED
@@ -37,7 +37,8 @@ async def lifespan(app: FastAPI):
37
  scheduler.shutdown()
38
 
39
 
40
- app = FastAPI(lifespan=lifespan)
 
41
 
42
 
43
  @app.get("/")
 
37
  scheduler.shutdown()
38
 
39
 
40
+ # app = FastAPI(lifespan=lifespan) # disable for now
41
+ app = FastAPI()
42
 
43
 
44
  @app.get("/")
pyproject.toml CHANGED
@@ -1,6 +1,6 @@
1
  [project]
2
  name = "fetch"
3
- version = "0.6.0"
4
  description = "Puppy Installer"
5
  authors = [
6
  { name = "Alex Kislukhin" }
 
1
  [project]
2
  name = "fetch"
3
+ version = "0.7.0"
4
  description = "Puppy Installer"
5
  authors = [
6
  { name = "Alex Kislukhin" }