Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ WORKDIR /build
COPY ../../. .
RUN apk add --no-cache nodejs npm
RUN npm install -g yarn
RUN dotnet publish -c Release -o /build/publish src/Api/Api.csproj
RUN dotnet publish /build/publish src/Api/Api.csproj -c Release -o

#########################################################################

Expand Down
9 changes: 5 additions & 4 deletions src/Api/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,13 @@
}
},
"AllowedHosts": "*",
"AllowedOrigins": [],
"AllowedOrigins": [
"https://localhost:443",
"http://localhost:80",
"https://poegamblinghelper.swerik.dev"
],
"CacheTag": "FetchData",
"FetchInterval": "5",
"Quartz": {
"quartz.scheduler.instanceName": "Quartz Api Update Scheduler"
},
"RateLimit": {
"Global": {
"TokenLimit": 1000,
Expand Down
2 changes: 1 addition & 1 deletion src/Web/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ WORKDIR /build
COPY ../../. .
RUN apk add --no-cache nodejs npm
RUN npm install -g yarn
RUN dotnet publish -c Release -o /build/publish src/Web/Web.csproj
RUN dotnet publish src/Web/Web.csproj -c Release -o /build/publish

#########################################################################

Expand Down
Loading