Compare commits
2 Commits
ea689bb7a1
...
f410f69e9d
| Author | SHA1 | Date | |
|---|---|---|---|
| f410f69e9d | |||
| 036f4d1dfc |
@@ -1,7 +1,7 @@
|
||||
**/.classpath
|
||||
**/.dockerignore
|
||||
**/.env
|
||||
**/.git
|
||||
#**/.git
|
||||
**/.gitignore
|
||||
**/.project
|
||||
**/.settings
|
||||
|
||||
@@ -68,7 +68,6 @@ steps:
|
||||
from_secret: telegram_user_id
|
||||
when:
|
||||
status:
|
||||
- success
|
||||
- failure
|
||||
depends_on:
|
||||
- compile
|
||||
|
||||
@@ -9,9 +9,9 @@ EXPOSE 8081
|
||||
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
|
||||
ARG BUILD_CONFIGURATION=Release
|
||||
WORKDIR /src
|
||||
COPY ["WebApi.csproj", "src/WebApi/"]
|
||||
COPY ["src/WebApi/WebApi.csproj", "src/WebApi/"]
|
||||
RUN dotnet restore "./src/WebApi/WebApi.csproj"
|
||||
COPY . src/WebApi
|
||||
COPY . .
|
||||
WORKDIR "/src/src/WebApi"
|
||||
RUN dotnet build "./WebApi.csproj" -c $BUILD_CONFIGURATION -o /app/build
|
||||
|
||||
@@ -12,6 +12,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
|
||||
README.md = README.md
|
||||
.drone.yml = .drone.yml
|
||||
version.json = version.json
|
||||
Dockerfile = Dockerfile
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{437DE053-1DAB-4EEF-BEA6-E3B5179692F8}"
|
||||
|
||||
Reference in New Issue
Block a user