-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathDockerfile
87 lines (63 loc) · 2.49 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# Client
FROM node:lts-alpine AS packages-build
WORKDIR /usr/app/
RUN mkdir -p ./.yarn/releases
COPY ./.yarn/releases/yarn-3.2.1.cjs ./.yarn/releases/yarn-3.2.1.cjs
COPY ./.yarnrc.yml .
COPY ./package.json .
COPY ./yarn.lock .
COPY ./packages/client/package.json ./packages/client/package.json
COPY ./packages/server/package.json ./packages/server/package.json
RUN yarn
COPY ./packages/server/ ./packages/server/
WORKDIR /usr/app/packages/server
RUN yarn build
COPY .env ./dist/
WORKDIR /usr/app/
COPY ./packages/client/ ./packages/client
#####
FROM mcr.microsoft.com/dotnet/sdk:8.0-alpine AS build
WORKDIR /usr/app/generatorSrc
# copy csproj and restore as distinct layers
COPY ./Generator .
RUN dotnet restore "./TPRandomizer.csproj" --disable-parallel
# copy and publish app and libraries
RUN dotnet publish "./TPRandomizer.csproj" -c release -o /app/generator --no-restore
# RUN mkdir /app/generator/Generator
RUN cp -R World /app/generator/World
RUN cp -R Glitched-World /app/generator/Glitched-World
RUN cp -R Translations /app/generator/Translations
RUN mkdir -p /app/generator/Assets/Sound
RUN cp -R Assets/Sound/BackgroundMusic.jsonc /app/generator/Assets/Sound/BackgroundMusic.jsonc
RUN mkdir -p /app/generator/Assets/Entrances
RUN cp -R Assets/Entrances/EntranceTable.jsonc /app/generator/Assets/Entrances/EntranceTable.jsonc
RUN mkdir -p /app/generator/Assets/CheckMetadata
RUN cp -R Assets/CheckMetadata/Gamecube /app/generator/Assets/CheckMetadata
RUN cp -R Assets/CheckMetadata/Wii1.0 /app/generator/Assets/CheckMetadata
RUN cp -R Assets/HintDistributions /app/generator/Assets/HintDistributions
FROM node:lts-alpine as node_base
FROM mcr.microsoft.com/dotnet/runtime:8.0-alpine
COPY --from=node_base . .
# Install nginx. Maybe don't need curl and vim, though vim could potentially be handy.
# 'icu' packages are to support languages other than 'invariant'.
RUN apk update \
&& apk add --no-cache nginx curl vim icu-data-full icu-libs
WORKDIR /app
COPY --from=build /app .
COPY .env ./generator
# ENTRYPOINT ["dotnet", "dotnetapp.dll"]
# CMD ["sleep", "infinity"]
COPY --from=packages-build /usr/app/packages/client /usr/app/client/build
COPY --from=packages-build /usr/app/packages/server/dist /usr/app/server
WORKDIR /usr/app/server
ENV TPRGEN_ENV=production
ENV NODE_ENV=production
# EXPOSE 3500
COPY ./nginx.conf /usr/nginx.conf
COPY ./start.sh /usr/start.sh
ARG IMAGE_VERSION
ENV IMAGE_VERSION $IMAGE_VERSION
ARG GIT_COMMIT
ENV GIT_COMMIT $GIT_COMMIT
# CMD ["node", "bundle.js"]
CMD ["/usr/start.sh"]