mirror of
https://github.com/FancyInnovations/FancyPlugins.git
synced 2025-12-05 23:33:36 +00:00
8 lines
257 B
Docker
8 lines
257 B
Docker
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS builder
|
|
WORKDIR /build
|
|
COPY . /build
|
|
RUN dotnet tool install retypeapp --tool-path /bin
|
|
RUN retype build --output .docker-build/
|
|
|
|
FROM httpd:latest
|
|
COPY --from=builder /build/.docker-build/ /usr/local/apache2/htdocs/ |