By Marco Chitu
Hello,
I want to deploy an ASP.Net API with ‘Create Resource From Source Code,’ but after I connect to GitHub, I get an error in the top right corner of the page: ‘no component detected.’
In the repository is name/repository, Branch: master, Source Directory (Optional) / and Auto Deploy is activated.
Please, can you help me?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Hi there,
ASP.Net is not supported as a native buildpack as listed here:
https://docs.digitalocean.com/products/app-platform/reference/buildpacks/
However what you could do here is to use a Dockerfile instead to deploy your app:
https://docs.digitalocean.com/products/app-platform/reference/dockerfile/
Here is an example Dockerfile that you could use for your ASP.Net app:
# Use the official Microsoft .NET SDK image as a base image
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build-env
WORKDIR /app
# Copy csproj and restore as distinct layers
COPY *.csproj ./
RUN dotnet restore
# Copy everything else and build
COPY . ./
RUN dotnet publish -c Release -o out
# Build runtime image
FROM mcr.microsoft.com/dotnet/aspnet:7.0
WORKDIR /app
COPY --from=build-env /app/out .
ENTRYPOINT ["dotnet", "YourAppName.dll"]
Make sure to adjust this accordingly based on your app needs.
Let me know if you have any questions.
- Bobby
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.