Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ RUN dotnet restore src/MicroStack/MicroStack.csproj -r linux-musl-x64

# Copy source and publish
COPY src/MicroStack/ src/MicroStack/
RUN dotnet publish src/MicroStack/MicroStack.csproj -c Release -r linux-musl-x64 -o /app --no-restore
RUN dotnet publish src/MicroStack/MicroStack.csproj -c Release -r linux-musl-x64 -o /app

FROM alpine:3.21
RUN apk add --no-cache libstdc++ libgcc
COPY --from=build /app /app
ENV ASPNETCORE_HTTP_PORTS=4566
EXPOSE 4566
Expand Down
Loading