feat: añadido primer intento de app hecha con fastapi
Build Docker Image / docker (push) Failing after 9s
Build Docker Image / docker (push) Failing after 9s
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
FROM fedesrv.ddns.net/fede/void-musl-busybox:latest
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY . .
|
||||
|
||||
# instalar python (si la imagen lo permite)
|
||||
RUN xbps-install -Sy python3 python3-pip || true
|
||||
|
||||
# instalar dependencias
|
||||
RUN pip3 install fastapi uvicorn || true
|
||||
|
||||
EXPOSE 8000
|
||||
|
||||
CMD ["sh", "-c", "uvicorn main:app --host 0.0.0.0 --port 8000"]
|
||||
Reference in New Issue
Block a user