This commit is contained in:
Aisalkyn85 2025-07-07 09:03:08 -06:00 committed by GitHub
commit eb4fe3a7a6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 1 deletions

View file

@ -21,5 +21,6 @@
]
}
},
"remoteUser": "vscode"
"remoteUser": "vscode",
"$schema": "vscode"
}

5
Dockerfile Normal file
View file

@ -0,0 +1,5 @@
FROM openjdk:17-jdk-slim
WORKDIR /root
COPY target/*.jar app.jar
EXPOSE 8086
CMD ["sh", "-c", "java -jar /root/app.jar & sleep 3600"]