Delje's picture
Create app.py
2420710 verified
raw
history blame contribute delete
120 Bytes
COPY . /afrom fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}
pp