Merge pull request #534 from vsoch/pr/build-from-quay

FROM image for Docker multistage build needs to be from quay.io
This commit is contained in:
Jonathan Turner 2019-08-30 13:39:58 +12:00 committed by GitHub
commit 8d21c7383e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,5 @@
ARG FROMTAG=latest
FROM nushell/nu-base:${FROMTAG} as base
FROM quay.io/nushell/nu-base:${FROMTAG} as base
FROM rust:1.37-slim
COPY --from=base /usr/local/bin/nu /usr/local/bin/nu
ENTRYPOINT ["nu"]