Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: upgrade to net9 #56

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

feat: upgrade to net9 #56

wants to merge 1 commit into from

Conversation

HBTeun
Copy link
Member

@HBTeun HBTeun commented Nov 13, 2024

  • Upgraded the build container to NET 9
  • Kept runtime support for NET 8
  • [BREAKING] Dropped support for NET 7

@@ -27,7 +27,7 @@ RUN apt-get update \
&& apt-get clean && rm -rf /var/lib/apt/lists/*

# install docker-compose
RUN curl -L "https://github.com/docker/compose/releases/download/v2.16.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose \
RUN curl -L "https://github.com/docker/compose/releases/download/v2.29.7/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose \
&& chmod +x /usr/local/bin/docker-compose

# install Chromium for (unit)-testing during build-phase
Copy link
Member Author

@HBTeun HBTeun Nov 13, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As far as I see line 35 is already done on line 21. This comment has nothing to do with what is shown above.

I meant the following:
afbeelding
afbeelding

@HBTeun HBTeun marked this pull request as ready for review November 13, 2024 16:43
@matijs-toonen
Copy link

matijs-toonen commented Nov 13, 2024

Looking good 👍! Hyped to start using .net 9 🥳

Copy link
Member

@Mastermindzh Mastermindzh left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Clarify or revert the move of the dotnet tool install commands.

CHANGELOG.md Outdated

- Updated to NET 9 SDK Container
- Update to Node 20
- Update Docker to v2.29.7
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

docker-compose *

Dockerfile Outdated Show resolved Hide resolved
@@ -49,12 +49,6 @@ RUN mkdir -p ~/scripts
COPY scripts /scripts
RUN echo "source /scripts/dotnetcore.sh" >> ~/.bashrc

# install reportgenerator for code coverage
RUN dotnet tool install -g dotnet-reportgenerator-globaltool
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why did you move this to the dotnet-build.sh file?

This way it will execute the tool install every time you run the container.
Tools should really be included in the container so we have a static and replayable environment between builds

Copy link
Member Author

@HBTeun HBTeun Nov 14, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I removed them because they sometimes resulted in errors because they could not not be updated because it was a fixed container layer.

Normally for dotnet tools this is done using a local tool manifest file in the repo. NPM tools are also not in the container.

Plus the "tool install every time" can be partly solved with using the Bitbucket pipeline cache better.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants