Commit e17b42b 1 parent 88c429c commit e17b42b Copy full SHA for e17b42b
File tree 1 file changed +4
-0
lines changed
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -34,17 +34,21 @@ RUN dotnet publish ./Difficalcy.Osu/Difficalcy.Osu.csproj -o /app/difficalcy-osu
34
34
RUN dotnet publish ./Difficalcy.Taiko/Difficalcy.Taiko.csproj -o /app/difficalcy-taiko --runtime linux-x64 --self-contained false
35
35
36
36
FROM base AS difficalcy-catch
37
+ LABEL org.opencontainers.image.description "Lazer powered osu!catch difficulty calculator API"
37
38
COPY --from=build /app/difficalcy-catch .
38
39
ENTRYPOINT ["./Difficalcy.Catch" ]
39
40
40
41
FROM base AS difficalcy-mania
42
+ LABEL org.opencontainers.image.description "Lazer powered osu!mania difficulty calculator API"
41
43
COPY --from=build /app/difficalcy-mania .
42
44
ENTRYPOINT ["./Difficalcy.Mania" ]
43
45
44
46
FROM base AS difficalcy-osu
47
+ LABEL org.opencontainers.image.description "Lazer powered osu! difficulty calculator API"
45
48
COPY --from=build /app/difficalcy-osu .
46
49
ENTRYPOINT ["./Difficalcy.Osu" ]
47
50
48
51
FROM base AS difficalcy-taiko
52
+ LABEL org.opencontainers.image.description "Lazer powered osu!taiko difficulty calculator API"
49
53
COPY --from=build /app/difficalcy-taiko .
50
54
ENTRYPOINT ["./Difficalcy.Taiko" ]
You can’t perform that action at this time.
0 commit comments