mirror of
https://github.com/TsakiDev/gitea-comment.git
synced 2024-11-23 02:02:09 +01:00
7 lines
210 B
Docker
7 lines
210 B
Docker
|
FROM mcr.microsoft.com/dotnet/core/runtime:3.1.8-buster-slim
|
||
|
RUN dotnet publish -c Release -o artifacts
|
||
|
RUN rm artifacts/*.pdb
|
||
|
ADD artifacts/* /bin/
|
||
|
RUN chmod +x /bin/IT.GiteaComment
|
||
|
CMD "/bin/IT.GiteaComment"
|