Compare commits

..

2 Commits

Author SHA1 Message Date
60d6a1fdcd Moved drone configuration to correct location
Some checks failed
continuous-integration/drone/push Build is failing
2022-01-26 21:12:28 -08:00
3737ac3e93 Added docker file to create container and drone.yml for CI 2022-01-26 21:09:51 -08:00
5 changed files with 49 additions and 2 deletions

24
.drone.yml Normal file
View File

@ -0,0 +1,24 @@
kind: pipeline
type: docker
name: AOC2021
steps:
- name: init
image: busybox
commands:
- echo 'Starting build pipeline for AOC2021'
- name: build-aoc-2021
image: plugins/docker
settings:
username:
from_secret: docker_username
password:
from_secret: docker_password
repo: 97waterpolo/aoc-2021
dockerfile: AOC2021/Dockerfile
- name: finish
image: busybox
commands:
- echo 'Finished deployment for Aincrad'

View File

@ -4,7 +4,6 @@ namespace AOC2021.Test.Models
{
public class Answer
{
public string Day_A_Test { get; set; }
public string Day_A_Input { get; set; }
public string Day_B_Test { get; set; }

View File

@ -5,7 +5,12 @@ VisualStudioVersion = 16.0.31515.178
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AOC2021", "AOC2021\AOC2021.csproj", "{1C97C7BD-E112-4CC4-B870-BCEE6146C707}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AOC2021.Test", "AOC2021.Test\AOC2021.Test.csproj", "{00B6E578-8E4E-4722-A601-A8CEE90704E1}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AOC2021.Test", "AOC2021.Test\AOC2021.Test.csproj", "{00B6E578-8E4E-4722-A601-A8CEE90704E1}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{124C7B74-D961-41F1-AF3D-6601591EB410}"
ProjectSection(SolutionItems) = preProject
.drone.yml = .drone.yml
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution

View File

@ -5,5 +5,6 @@
</PropertyGroup>
<PropertyGroup>
<ActiveDebugProfile>AOC2021</ActiveDebugProfile>
<ShowAllFiles>false</ShowAllFiles>
</PropertyGroup>
</Project>

18
AOC2021/Dockerfile Normal file
View File

@ -0,0 +1,18 @@
FROM mcr.microsoft.com/dotnet/runtime:5.0 AS base
WORKDIR /app
FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build
WORKDIR /src
COPY ["AOC2021.csproj", "AOC2021/"]
RUN dotnet restore "AOC2021/AOC2021.csproj"
COPY [".", "AOC2021/."]
WORKDIR "/src/AOC2021"
RUN dotnet build "AOC2021.csproj" -c Release -o /app/build
FROM build AS publish
RUN dotnet publish "AOC2021.csproj" -c Release -o /app/publish
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "AOC2021.dll"]