fix(docs): redirect from old docs to new

This commit is contained in:
Carl-Gerhard Lindesvärd
2024-11-13 23:24:40 +01:00
parent b30a76165d
commit 15b1c5f82f
3 changed files with 66 additions and 0 deletions

11
apps/docs/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM node:18-alpine
WORKDIR /app
COPY apps/docs/package.json package.json
RUN npm install --production
COPY apps/docs/index.js index.js
EXPOSE 3000
CMD ["node", "index.js"]