FROM microsoft/dotnet:2.2-aspnetcore-runtime MAINTAINER Belman Kraul-Garcia ENV ASPNETCORE_URLS="http://*:80" EXPOSE 80 RUN apt-get update; apt-get install -y unzip; apt-get install wget -y \ && apt-get clean && rm -rf /var/lib/apt/lists/* RUN wget -O BaGet.zip https://github.com/loic-sharma/BaGet/releases/download/v0.1.77-prerelease/BaGet.zip \ && unzip BaGet.zip -d /app && rm -rf BaGet.zip WORKDIR /app ENTRYPOINT ["dotnet", "BaGet.dll"]