aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md5
-rw-r--r--Dockerfile4
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 ./