I want to publish my project using ABP to Ubuntu 16.04 with Docker, I'm still confused, where I put the dockerfile in abp project? maybe my dockerfile it's wrong,
Here my dockerfile:
FROM microsoft/dotnet:latest
COPY . /app
WORKDIR /app
RUN ["dotnet", "restore"]
RUN ["dotnet", "build"]
EXPOSE 5000/tcp
ENV ASPNETCORE_URLS http://*:5000
ENV ASPNETCORE_ENVIRONMENT docker
ENTRYPOINT ["dotnet", "run"]
I found that's code from the internet , Anyone can help me? I need an explanation so I can learn.