mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 20:23:27 +08:00
13 lines
206 B
Docker
13 lines
206 B
Docker
FROM mcr.microsoft.com/dotnet/aspnet:5.0
|
|
|
|
RUN apt-get update && apt-get install -y libgdiplus
|
|
|
|
WORKDIR /app
|
|
|
|
EXPOSE 80
|
|
|
|
COPY ./ /app
|
|
|
|
ENV TZ=Asia/Shanghai
|
|
|
|
ENTRYPOINT ["dotnet", "CoreCms.Net.Web.Admin.dll"] |