Fix Docker and bio

Rename prepare step

Attempt docker fix

Docker fix

Fix bio and add pug prettier config

Fix spacing

Fix grammer
This commit is contained in:
E
2024-04-29 17:21:03 +01:00
parent b3aae82a2a
commit dec522c914
5 changed files with 119 additions and 69 deletions

View File

@@ -1,11 +1,11 @@
FROM node:16-bullseye-slim
FROM node:21-bullseye-slim
ENV IS_DOCKER=true
ENV NODE_ENV=production
WORKDIR /app
COPY ["package.json", "package-lock.json*", "./"]
RUN npm install --omit=dev
RUN npm install
RUN npm install nodemon
COPY . .
RUN npm run build-tailwind