-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
52 lines (39 loc) · 1.5 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
############################################################
## build the front end
############################################################
# https://hub.docker.com/_/node
FROM node:18.18.0 AS frontendbuilder
WORKDIR /build
COPY ./frontend/*.json /build/
RUN npm i -g npm \
&& npm i
RUN npx browserslist@latest --update-db
COPY ./frontend/.parcelrc /build/
COPY ./frontend/src /build/src/
COPY ./frontend/static /build/static/
RUN npm run build
############################################################
## build the back end
############################################################
# https://hub.docker.com/_/microsoft-dotnet-sdk/
FROM mcr.microsoft.com/dotnet/sdk:7.0.401 AS backendbuilder
WORKDIR /build
COPY ./backend/src/*.csproj /build/
RUN dotnet restore
COPY ./backend/src /build/
RUN dotnet publish --output /dist --configuration Debug
############################################################
## build runtime
############################################################
# https://hub.docker.com/_/microsoft-dotnet-aspnet/
FROM mcr.microsoft.com/dotnet/aspnet:7.0.11
COPY --from=backendbuilder /dist /app
COPY --from=frontendbuilder /build/dist /app/wwwroot/gamecore
############################################################
## configure startup
############################################################
WORKDIR /app
ENV ASPNETCORE_ENVIRONMENT "Development"
ENV ASPNETCORE_URLS http://*:80
EXPOSE 80/tcp
ENTRYPOINT ["dotnet", "src.dll"]