Skip to content

Instantly share code, notes, and snippets.

@0x414c49
Created January 8, 2020 10:26
Show Gist options
  • Save 0x414c49/94f760430fd917c61980ad151041e7fb to your computer and use it in GitHub Desktop.
Save 0x414c49/94f760430fd917c61980ad151041e7fb to your computer and use it in GitHub Desktop.
ASPNET Core on Alpine base image
FROM alpine:3.9.4
# Add some libs required by .NET runtime
RUN apk add --no-cache libstdc++ libintl icu
EXPOSE 80
EXPOSE 443
# Copy
WORKDIR /app
COPY ./publish ./
ENTRYPOINT ["./MyWebApp", "--urls", "http://0.0.0.0:80"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment