Attempt to speed up Docker building
This commit is contained in:
parent
99ec3cd355
commit
f5c5291877
13
Dockerfile
13
Dockerfile
@ -1,9 +1,20 @@
|
|||||||
FROM mcr.microsoft.com/dotnet/core/sdk:2.2-alpine
|
FROM mcr.microsoft.com/dotnet/core/sdk:2.2-alpine
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
|
# Copy all solution files to container, and run restore
|
||||||
|
COPY PluralKit.API/PluralKit.API.csproj /app/PluralKit.API/
|
||||||
|
COPY PluralKit.Bot/PluralKit.Bot.csproj /app/PluralKit.Bot/
|
||||||
|
COPY PluralKit.Core/PluralKit.Core.csproj /app/PluralKit.Core/
|
||||||
|
COPY PluralKit.Web/PluralKit.Web.csproj /app/PluralKit.Web/
|
||||||
|
COPY PluralKit.sln /app
|
||||||
|
RUN dotnet restore
|
||||||
|
|
||||||
|
# Copy actual source code to container and build
|
||||||
COPY PluralKit.API /app/PluralKit.API
|
COPY PluralKit.API /app/PluralKit.API
|
||||||
COPY PluralKit.Bot /app/PluralKit.Bot
|
COPY PluralKit.Bot /app/PluralKit.Bot
|
||||||
COPY PluralKit.Core /app/PluralKit.Core
|
COPY PluralKit.Core /app/PluralKit.Core
|
||||||
COPY PluralKit.Web /app/PluralKit.Web
|
COPY PluralKit.Web /app/PluralKit.Web
|
||||||
COPY PluralKit.sln /app
|
|
||||||
RUN dotnet build
|
RUN dotnet build
|
||||||
|
|
||||||
|
ENTRYPOINT dotnet run
|
@ -2,7 +2,7 @@ version: "3"
|
|||||||
services:
|
services:
|
||||||
bot:
|
bot:
|
||||||
build: .
|
build: .
|
||||||
entrypoint: ["dotnet", "run", "--project", "PluralKit.Bot"]
|
command: ["--project", "PluralKit.Bot"]
|
||||||
environment:
|
environment:
|
||||||
- "PluralKit:Database=Host=db;Username=postgres;Password=postgres;Database=postgres"
|
- "PluralKit:Database=Host=db;Username=postgres;Password=postgres;Database=postgres"
|
||||||
- "PluralKit:InfluxUrl=http://influx:8086"
|
- "PluralKit:InfluxUrl=http://influx:8086"
|
||||||
@ -17,7 +17,7 @@ services:
|
|||||||
restart: always
|
restart: always
|
||||||
web:
|
web:
|
||||||
build: .
|
build: .
|
||||||
entrypoint: ["dotnet", "run", "--project", "PluralKit.Web"]
|
command: ["--project", "PluralKit.Web"]
|
||||||
environment:
|
environment:
|
||||||
- "PluralKit:Database=Host=db;Username=postgres;Password=postgres;Database=postgres"
|
- "PluralKit:Database=Host=db;Username=postgres;Password=postgres;Database=postgres"
|
||||||
links:
|
links:
|
||||||
@ -27,7 +27,7 @@ services:
|
|||||||
restart: always
|
restart: always
|
||||||
api:
|
api:
|
||||||
build: .
|
build: .
|
||||||
entrypoint: ["dotnet", "run", "--project", "PluralKit.API"]
|
command: ["--project", "PluralKit.API"]
|
||||||
environment:
|
environment:
|
||||||
- "PluralKit:Database=Host=db;Username=postgres;Password=postgres;Database=postgres"
|
- "PluralKit:Database=Host=db;Username=postgres;Password=postgres;Database=postgres"
|
||||||
links:
|
links:
|
||||||
|
Loading…
Reference in New Issue
Block a user