You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
299 B
14 lines
299 B
FROM mcr.microsoft.com/dotnet/aspnet:8.0
|
|
LABEL maintainer="colin.in@foxmail.com"
|
|
WORKDIR /app
|
|
|
|
COPY . /app
|
|
|
|
EXPOSE 80/tcp
|
|
VOLUME [ "./app/Logs" ]
|
|
VOLUME [ "./app/Modules" ]
|
|
|
|
RUN apt update
|
|
RUN apt install wget -y
|
|
|
|
ENTRYPOINT ["dotnet", "LY.MicroService.BackendAdmin.HttpApi.Host.dll"]
|
|
|