mirror of
https://github.com/fergalmoran/podnoms.git
synced 2026-02-09 09:14:14 +00:00
11 lines
199 B
Docker
Executable File
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"]
|