-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update documentation for open source (#18)
- Loading branch information
1 parent
fc33545
commit 69ff227
Showing
18 changed files
with
69 additions
and
287 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "nuget" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
day: "sunday" | ||
time: "21:00" | ||
timezone: "America/Detroit" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,23 @@ | ||
FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build | ||
LABEL cache=true | ||
ARG VERSION | ||
ARG IMAGE_VERSION | ||
ARG CERT_INSTALL | ||
|
||
RUN apt-get update && apt-get install -y curl sudo | ||
RUN curl -fksSL https://certs.hyland.io/install.sh | sudo bash | ||
RUN curl -fksSL ${CERT_INSTALL} | sudo bash | ||
RUN update-ca-certificates | ||
|
||
WORKDIR /app | ||
COPY . . | ||
|
||
RUN dotnet build -c Docker -p:Version=${VERSION} | ||
RUN dotnet build -c Docker -p:Version=${IMAGE_VERSION} | ||
RUN dotnet publish -c Docker --framework=net5.0 --output /app/publish | ||
|
||
FROM mcr.microsoft.com/dotnet/aspnet:5.0 as runtime | ||
|
||
LABEL maintainer "Test Automation Team <[email protected]>" | ||
|
||
ENV SPEC_LOCATION "https://bitbucket.hyland.com/projects/TATO/repos/hot-potato/raw/test/RawPotatoSpec.yaml" | ||
ENV SPEC_LOCATION "https://raw.githubusercontent.com/HylandSoftware/Hot-Potato/master/test/RawPotatoSpec.yaml" | ||
ENV REMOTE_ENDPOINT "http://localhost:9000" | ||
|
||
COPY --from=build /app/publish /opt/hotpotato/ | ||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.