Skip to content

Instantly share code, notes, and snippets.

@zhengchun
Created February 11, 2019 07:35
Show Gist options
  • Save zhengchun/58fe7f398075ef780e75198f86ebee69 to your computer and use it in GitHub Desktop.
Save zhengchun/58fe7f398075ef780e75198f86ebee69 to your computer and use it in GitHub Desktop.
aspnetcore-webapp-docker
FROM microsoft/dotnet:2.2.1-runtime-alpine3.8
LABEL maintainer="ZHENGCHUN"
RUN apk update \
&& apk --no-cache add fontconfig
VOLUME /app
WORKDIR /app
ENTRYPOINT ["dotnet"]
CMD [""]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment