From a25f8b5bd41614eb65540bccef0a204d946bd619 Mon Sep 17 00:00:00 2001 From: Kevin J Hoerr Date: Sat, 11 Sep 2021 15:24:40 -0400 Subject: Update node images in Dockerfile --- CHANGELOG.md | 5 +++++ Dockerfile | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e4dadbd..c70f925 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Changed + +- Adjusted routes tests to fail properly if HOST_DIR is undefined or has insufficient access control +- Updated node images used in Dockerfile + ## [0.4.3] ### Changed diff --git a/Dockerfile b/Dockerfile index 31b60f5..71e2834 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Stage 1. Base -FROM node:carbon AS base +FROM node:lts AS base WORKDIR /app # Stage 2. Dependencies @@ -14,7 +14,7 @@ COPY tsconfig.json /app RUN npm run tsc # Stage 4. Release Image -FROM node:alpine AS release +FROM node:lts-alpine AS release WORKDIR /app COPY --from=dependencies /app/package.json ./ -- cgit