mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-05 10:44:48 +02:00
11 lines
295 B
Docker
11 lines
295 B
Docker
FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/runtime-deps:8.0-noble-chiseled-extra AS final
|
|
|
|
ENV TZ=Asia/Tehran
|
|
WORKDIR /app
|
|
EXPOSE 8080
|
|
USER $APP_UID
|
|
|
|
# Copy the published output from the build stage (set by the GitHub Actions workflow)
|
|
COPY publish/ .
|
|
|
|
ENTRYPOINT ["./MTWireGuard"]
|