Some checks failed
continuous-integration/drone/push Build is failing
8 lines
149 B
Docker
8 lines
149 B
Docker
FROM mcr.microsoft.com/dotnet/aspnet:7.0
|
|
RUN apt-get install -y tzdata
|
|
|
|
COPY /publish /app
|
|
WORKDIR /app
|
|
|
|
ENTRYPOINT ["dotnet", "my-weather-api.dll"]
|