BaGet/release/Dockerfile

14 lines
479 B
Docker
Raw Permalink Normal View History

2019-07-23 18:37:58 +00:00
FROM microsoft/dotnet:2.2-aspnetcore-runtime
MAINTAINER Belman Kraul-Garcia <bkraul@belmankraul.com>
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"]