-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build and Deploy Microsoft Teams container (#33)
### Summary & Motivation Update the CalendarAssistant pipeline to automate the build and deployment of the Microsoft Teams application. This enhancement enables streamlined deployment into Azure Container Apps. ### Atomic Changes - Build and Deploy Microsoft Teams container ### Checklist - [x] I have added a Label to the pull-request - [x] I have added tests, and done manual regression tests - [x] I have updated the documentation, if necessary
- Loading branch information
1 parent
464bedc
commit aa5dac1
Showing
3 changed files
with
39 additions
and
1 deletion.
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
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,11 @@ | ||
FROM mcr.microsoft.com/dotnet/aspnet:8.0-alpine | ||
|
||
RUN apk add --no-cache icu-libs | ||
ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=false | ||
|
||
WORKDIR /app | ||
COPY ./MicrosoftTeams/publish . | ||
|
||
USER app | ||
|
||
ENTRYPOINT ["dotnet", "Moment42.CalendarAssistant.MicrosoftTeams.dll"] |
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