5 lines
127 B
Docker
5 lines
127 B
Docker
FROM mcr.microsoft.com/dotnet/runtime:9.0
|
|
COPY ./song_of_the_day/bin/Release/net9.0/ /app
|
|
WORKDIR /app
|
|
CMD ["song_of_the_day"]
|