mirror of
https://github.com/g3rv4/FakeRelay.git
synced 2024-11-07 16:24:07 +01:00
16 lines
523 B
Docker
16 lines
523 B
Docker
# syntax=docker/dockerfile:1
|
|
|
|
ARG ARCH=
|
|
FROM mcr.microsoft.com/dotnet/sdk:8.0.100-1-alpine3.18-${ARCH} 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" ]
|