mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-04-20 17:42:50 +08:00

* breaking upgrade base build image to net5.0 * add make and build tools to image * fix code broken after net5.0 upgrade * fix warnings * fix tests and line endings * upgrade dotnet test and coverages packages * update circle build image * removed rafty and updated more packages * bring back develop * rename authorisation to authorization
21 lines
589 B
Docker
21 lines
589 B
Docker
# call from ocelot repo root with
|
|
# docker build --build-arg OCELOT_COVERALLS_TOKEN=$OCELOT_COVERALLS_TOKEN --build-arg OCELOT_GITHUB_API_KEY=$OCELOT_GITHUB_API_KEY --build-arg OCELOT_COVERALLS_TOKEN=$OCELOT_COVERALLS_TOKEN -f ./docker/Dockerfile.release .
|
|
|
|
FROM mijitt0m/ocelot-build:0.0.3
|
|
|
|
ARG OCELOT_COVERALLS_TOKEN
|
|
ARG OCELOT_NUTGET_API_KEY
|
|
ARG OCELOT_GITHUB_API_KEY
|
|
|
|
ENV OCELOT_COVERALLS_TOKEN=$OCELOT_COVERALLS_TOKEN
|
|
ENV OCELOT_NUTGET_API_KEY=$OCELOT_NUTGET_API_KEY
|
|
ENV OCELOT_GITHUB_API_KEY=$OCELOT_GITHUB_API_KEY
|
|
|
|
WORKDIR /src
|
|
|
|
COPY ./. .
|
|
|
|
RUN chmod u+x build.sh
|
|
|
|
RUN make release
|