mirror of
https://github.com/g3rv4/FakeRelay.git
synced 2024-11-24 16:23:10 +01:00
14 lines
485 B
Docker
14 lines
485 B
Docker
ARG ARCH=
|
|
FROM mcr.microsoft.com/dotnet/sdk:8.0.100-1-alpine3.18 AS builder
|
|
WORKDIR /src
|
|
COPY src /src/
|
|
RUN dotnet publish -c Release /src/FakeRelay.sln -o /app
|
|
|
|
FROM mcr.microsoft.com/dotnet/aspnet:8.0.0-alpine3.18-${ARCH}
|
|
VOLUME ["/data"]
|
|
ENV CONFIG_PATH=/data/config.json
|
|
COPY --from=builder /app /app
|
|
COPY entrypoint.sh /app/entrypoint.sh
|
|
RUN ln -s /app/FakeRelay.Cli /bin/cli && ln -s /app/FakeRelay.Web /bin/web && chmod +x /app/entrypoint.sh
|
|
ENTRYPOINT [ "/app/entrypoint.sh" ]
|