File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 4747 - name : Build the tagged Docker image
4848 run : docker build . -t microtingas/outer-inner-resource-container:latest -t microtingas/outer-inner-resource-container:1.0.0 --build-arg GITVERSION=1.00 --build-arg PLUGINVERSION=1.0.0
4949 - run : docker save microtingas/outer-inner-resource-container:latest -o outer-inner-resource-container.tar
50- - uses : actions/upload-artifact@v3
50+ - uses : actions/upload-artifact@v4
5151 with :
5252 name : outer-inner-resource-container
5353 path : outer-inner-resource-container.tar
7171 run : |
7272 docker pull rabbitmq:latest
7373 docker run -d --hostname my-rabbit --name some-rabbit --network data -e RABBITMQ_DEFAULT_USER=admin -e RABBITMQ_DEFAULT_PASS=password rabbitmq:latest
74- - uses : actions/download-artifact@v3
74+ - uses : actions/download-artifact@v4
7575 with :
7676 name : outer-inner-resource-container
7777 - run : docker load -i outer-inner-resource-container.tar
Original file line number Diff line number Diff line change 4444 - name : Build the tagged Docker image
4545 run : docker build . -t microtingas/outer-inner-resource-container:latest -t microtingas/outer-inner-resource-container:1.0.0 --build-arg GITVERSION=1.00 --build-arg PLUGINVERSION=1.0.0
4646 - run : docker save microtingas/outer-inner-resource-container:latest -o outer-inner-resource-container.tar
47- - uses : actions/upload-artifact@v3
47+ - uses : actions/upload-artifact@v4
4848 with :
4949 name : outer-inner-resource-container
5050 path : outer-inner-resource-container.tar
6161 run : |
6262 docker pull mariadb:10.8
6363 docker run --name mariadbtest --network data -e MYSQL_ROOT_PASSWORD=secretpassword -p 3306:3306 -d mariadb:10.8
64- - uses : actions/download-artifact@v3
64+ - uses : actions/download-artifact@v4
6565 with :
6666 name : outer-inner-resource-container
6767 - run : docker load -i outer-inner-resource-container.tar
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ COPY eform-angular-frontend/eform-client ./
55RUN yarn install
66RUN npm run build
77
8- FROM mcr.microsoft.com/dotnet/sdk:8 .0-jammy AS build-env
8+ FROM mcr.microsoft.com/dotnet/sdk:9 .0-noble AS build-env
99WORKDIR /app
1010ARG GITVERSION
1111ARG PLUGINVERSION
@@ -17,7 +17,7 @@ RUN dotnet publish eFormAPI.Web -o eFormAPI.Web/out /p:Version=$GITVERSION --run
1717RUN dotnet publish OuterInnerResource.Pn -o OuterInnerResource.Pn/out /p:Version=$PLUGINVERSION --runtime linux-x64 --configuration Release
1818
1919# Build runtime image
20- FROM mcr.microsoft.com/dotnet/aspnet:8 .0-jammy
20+ FROM mcr.microsoft.com/dotnet/aspnet:9 .0-noble
2121WORKDIR /app
2222COPY --from=build-env /app/eFormAPI.Web/out .
2323RUN mkdir -p ./Plugins/OuterInnerResource.Pn
You can’t perform that action at this time.
0 commit comments