mirror of https://gitee.com/CoreUnion/CoreShop.git
You cannot 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
319 B
Docker
14 lines
319 B
Docker
FROM mcr.microsoft.com/dotnet/aspnet:5.0
|
|
|
|
WORKDIR /app
|
|
|
|
EXPOSE 80
|
|
|
|
COPY ./ /app
|
|
|
|
ENV TZ=Asia/Shanghai
|
|
|
|
RUN sed -i 's/MinProtocol = TLSv1.2/MinProtocol = TLSv1/g' /etc/ssl/openssl.cnf
|
|
RUN sed -i 's/MinProtocol = TLSv1.2/MinProtocol = TLSv1/g' /usr/lib/ssl/openssl.cnf
|
|
|
|
ENTRYPOINT ["dotnet", "CoreCms.Net.Web.WebApi.dll"] |