From 4e061cb9bcde71cd3cbb7216221d1501e4e12073 Mon Sep 17 00:00:00 2001 From: Mark Janssen Date: Mon, 15 Nov 2021 13:58:21 +0100 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ea4f31e..9847054 100644 --- a/README.md +++ b/README.md @@ -10,19 +10,19 @@ ### Dockerfile for static files ```Dockerfile -FROM wisvch/nginx +FROM ghcr.io/wisvch/nginx COPY . /srv/ ``` ### Dockerfile with multi-stage Node.js build ```Dockerfile -FROM node:carbon AS builder +FROM node:gallium AS builder WORKDIR /src COPY . . RUN yarn RUN yarn build -FROM wisvch/nginx +FROM ghcr.io/wisvch/nginx COPY --from=builder /src/build/ /srv/ ``` @@ -32,4 +32,4 @@ COPY --from=builder /src/build/ /srv/ docker build -t nginx . docker run --rm -it -p 127.0.0.1:8080:8080 --tmpfs /tmp --read-only nginx ``` -then open http://127.0.0.1:8080 in your browser. \ No newline at end of file +then open http://127.0.0.1:8080 in your browser.