fix(docs): redirect from old docs to new
This commit is contained in:
11
apps/docs/Dockerfile
Normal file
11
apps/docs/Dockerfile
Normal 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"]
|
||||
Reference in New Issue
Block a user