We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7de016c commit 9fe74cfCopy full SHA for 9fe74cf
2 files changed
Dockerfile
@@ -0,0 +1,13 @@
1
+FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
2
+WORKDIR /app
3
+
4
+COPY src/Bot ./
5
+RUN dotnet restore
6
7
+RUN dotnet publish -c Release -o out
8
9
+FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS runtime
10
11
+COPY --from=build /app/out ./
12
13
+CMD ["dotnet", "Volte.dll"]
docker-compose.yaml
@@ -0,0 +1,8 @@
+services:
+ volte:
+ build:
+ context: .
+ dockerfile: Dockerfile
+ restart: unless-stopped
+ volumes:
+ - ./data:/app/data
0 commit comments