feat: Adds experiment launch script

This commit is contained in:
henrik
2024-12-23 00:48:26 +01:00
parent 7c10b31b2d
commit 9b022b296a
5 changed files with 15 additions and 2 deletions

View File

@@ -25,6 +25,8 @@ WORKDIR "/src/Pushy/Pushy"
RUN dotnet build "Pushy.csproj" --no-restore -c $BUILD_CONFIGURATION -o /app/pushy
COPY .dokku/Procfile /app/.dokku/Procfile
COPY run-silo.sh /app/run-silo.sh
COPY run-web.sh /app/run-web.sh
FROM build AS publish
ARG BUILD_CONFIGURATION=Release
@@ -40,4 +42,6 @@ FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
COPY --from=publish /app/.dokku /app/.dokku
COPY --from=publish /app/*.sh /app/
ENTRYPOINT ["sh"]