mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-04-20 13:12:50 +08:00
7 lines
280 B
Docker
7 lines
280 B
Docker
FROM mcr.microsoft.com/dotnet/aspnet:9.0.0-preview.6 AS base
|
|
WORKDIR /app
|
|
EXPOSE 8080
|
|
RUN apt update
|
|
RUN apt install -y redis
|
|
COPY ./dist/backend/NetAdmin.AdmServer.Host/bin/Release/net9.0/publish .
|
|
ENTRYPOINT redis-server --daemonize yes && dotnet NetAdmin.AdmServer.Host.dll -is |