3.13; pause ping
Browse files- Dockerfile +2 -2
- fetch.py +2 -1
- 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.
|
16 |
-
RUN pup --help
|
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.
|
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" }
|