1 Star 0 Fork 0

鸾瑶綾舞/Garnet

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Dockerfile.nanoserver 617 Bytes
一键复制 编辑 原始数据 按行查看 历史
Abdurrahman Alp Köken 提交于 2024-04-09 18:29 . Improve dockerfiles (#224)
ARG TAG=ltsc2022
FROM mcr.microsoft.com/dotnet/sdk:8.0-nanoserver-$TAG AS build
WORKDIR /source
# Copy files
COPY . .
WORKDIR /source/main/GarnetServer
RUN dotnet restore
RUN dotnet build -c Release
# Copy and publish app and libraries
RUN dotnet publish -c Release -o /app -r win-x64 --self-contained false -f net8.0
# Final stage/image
FROM mcr.microsoft.com/dotnet/runtime:8.0-nanoserver-$TAG AS runtime
WORKDIR /app
COPY --from=build /app .
# For inter-container communication.
EXPOSE 6379
# Run GarnetServer with an index size of 128MB
ENTRYPOINT ["/app/GarnetServer.exe", "-i", "128m", "--port", "6379"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/luanyaolingwu/Garnet.git
git@gitee.com:luanyaolingwu/Garnet.git
luanyaolingwu
Garnet
Garnet
main

搜索帮助