diff --git a/AOC2021/AOC2021.csproj b/AOC2021/AOC2021.csproj
index 1afa50b..c5187a0 100644
--- a/AOC2021/AOC2021.csproj
+++ b/AOC2021/AOC2021.csproj
@@ -3,17 +3,9 @@
net5.0
AnyCPU;x64
- false
false
-
-
-
-
-
-
-
diff --git a/AOC2021/Dockerfile b/AOC2021/Dockerfile
index a226516..04ec187 100644
--- a/AOC2021/Dockerfile
+++ b/AOC2021/Dockerfile
@@ -5,7 +5,7 @@ FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build
WORKDIR /src
COPY ["AOC2021/AOC2021.csproj", "AOC2021/"]
RUN dotnet restore "AOC2021/AOC2021.csproj"
-COPY [".", "AOC2021/."]
+COPY ["AOC2021/", "AOC2021/."]
WORKDIR "/src/AOC2021"
RUN dotnet build "AOC2021.csproj" -c Release -o /app/build