diff --git a/src/.dockerignore b/src/.dockerignore
new file mode 100644
index 0000000..f181d71
--- /dev/null
+++ b/src/.dockerignore
@@ -0,0 +1,2 @@
+**/bin
+**/obj
diff --git a/src/Dockerfile b/src/Dockerfile
new file mode 100644
index 0000000..888d39a
--- /dev/null
+++ b/src/Dockerfile
@@ -0,0 +1,10 @@
+FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build
+WORKDIR /jjj
+COPY . ./
+WORKDIR /jjj/JobsJobsJobs/Server
+RUN dotnet publish JobsJobsJobs.Server.csproj -c Release /p:PublishProfile=Properties/PublishProfiles/FolderProfile.xml
+
+FROM mcr.microsoft.com/dotnet/aspnet:5.0
+WORKDIR /jjj
+COPY --from=build /jjj/JobsJobsJobs/Server/bin/Release/net5.0/linux-x64/publish/ ./
+ENTRYPOINT [ "/jjj/JobsJobsJobs.Server" ]
diff --git a/src/JobsJobsJobs.sln b/src/JobsJobsJobs.sln
index 1f46ea4..23ff365 100644
--- a/src/JobsJobsJobs.sln
+++ b/src/JobsJobsJobs.sln
@@ -11,8 +11,10 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "JobsJobsJobs.Shared", "Jobs
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{50B51580-9F09-41E2-BC78-DAD38C37B583}"
ProjectSection(SolutionItems) = preProject
+ .dockerignore = .dockerignore
database\12-add-real-name.sql = database\12-add-real-name.sql
JobsJobsJobs\Directory.Build.props = JobsJobsJobs\Directory.Build.props
+ Dockerfile = Dockerfile
database\tables.sql = database\tables.sql
EndProjectSection
EndProject
diff --git a/src/JobsJobsJobs/Client/Pages/Index.razor b/src/JobsJobsJobs/Client/Pages/Index.razor
index 8850a8b..65503cd 100644
--- a/src/JobsJobsJobs/Client/Pages/Index.razor
+++ b/src/JobsJobsJobs/Client/Pages/Index.razor
@@ -4,8 +4,8 @@
- Future home of No Agenda Jobs, where citizens of Gitmo Nation can assist one another in finding or enhancing their - employment. This will enable them to continue providing value for value to Adam and John, as they continue their work + Welcome to Jobs, Jobs, Jobs (AKA No Agenda Careers), where citizens of Gitmo Nation can assist one another in finding + employment. This will enable them to continue providing value-for-value to Adam and John, as they continue their work deconstructing the misinformation that passes for news on a day-to-day basis.
diff --git a/src/JobsJobsJobs/Server/JobsJobsJobs.Server.csproj.user b/src/JobsJobsJobs/Server/JobsJobsJobs.Server.csproj.user
index 4aff699..476125d 100644
--- a/src/JobsJobsJobs/Server/JobsJobsJobs.Server.csproj.user
+++ b/src/JobsJobsJobs/Server/JobsJobsJobs.Server.csproj.user
@@ -6,7 +6,7 @@