Files
podnoms/server/Dockerfile
Fergal Moran 8d69c72b83 Merge Repos
2017-10-30 20:42:23 +00:00

11 lines
199 B
Docker
Executable File

FROM microsoft/aspnetcore:latest
WORKDIR /app
COPY out .
RUN apt-get update
RUN apt-get -y install youtube-dl
ENV ASPNETCORE_URLS http://*:5000
EXPOSE 5000
ENTRYPOINT ["dotnet", "PodNoms.Api.dll"]