pidgin/nest

Parents beaacddd84c0
Children 4001a8922417
Fix up the Dockerfile to fix the build. Not sure why we can't use bullseye for the node portion but that fails hard.
  • +2 -2
    Dockerfile
  • --- a/Dockerfile Sat Apr 18 02:14:07 2020 +0000
    +++ b/Dockerfile Sat Apr 18 02:20:44 2020 -0500
    @@ -2,7 +2,7 @@
    # run the hugo build
    #####################################################################
    -FROM debian:buster as hugo-build
    +FROM debian:bullseye as hugo-build
    RUN set -ex && \
    apt-get update && \
    apt-get install -y hugo && \
    @@ -21,7 +21,7 @@
    # setup up our node environment
    #####################################################################
    -FROM node:10-stretch-slim as node-build
    +FROM node:10-buster-slim as node-build
    WORKDIR /nest/
    COPY package-lock.json package.json ./
    RUN npm ci --production && \