diff --git a/.eleventy.js b/.eleventy.js index a6cc2b3..b78d61c 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -5,7 +5,7 @@ module.exports = function(eleventyConfig) { eleventyConfig.addPassthroughCopy("src/js"); eleventyConfig.addPassthroughCopy("src/resume"); eleventyConfig.addPassthroughCopy("src/assets/images"); - eleventyConfig.addPassthroughCopy({ "favicon" : "/" } ); + eleventyConfig.addPassthroughCopy({ "favicon" : "/" } ); // Add a filter for readable dates using vanilla JS eleventyConfig.addFilter("readableDate", dateObj => { // The toLocaleDateString method can be used to format dates diff --git a/Dockerfile b/Dockerfile index 1124f5f..7818282 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:lts-alpine +FROM node:18-alpine ENV NODE_ENV=production WORKDIR /app COPY package*.json ./