Skip to content
Snippets Groups Projects
Commit 46240ebf authored by Jakub Pelka's avatar Jakub Pelka :cat2:
Browse files

Fix CI path

parent 590e9b41
No related branches found
No related tags found
1 merge request!2Bring master up to date, merge updated CI
*/node_modules
*.log
......@@ -7,7 +7,7 @@ stages:
test:
stage: test
script:
- cd website
- cd docusaurus-site
- yarn install
- yarn build
- mv ./build ../test
......@@ -20,7 +20,7 @@ test:
pages:
stage: deploy
script:
- cd website
- cd docusaurus-site
- yarn install
- yarn build
- mv ./build ../public
......
FROM node:lts
WORKDIR /app/website
EXPOSE 3000 35729
COPY ./docs /app/docs
COPY ./website /app/website
RUN yarn install
CMD ["yarn", "start"]
version: "3"
services:
docusaurus:
build: .
ports:
- 3000:3000
- 35729:35729
volumes:
- ./docs:/app/docs
- ./website/blog:/app/website/blog
- ./website/core:/app/website/core
- ./website/i18n:/app/website/i18n
- ./website/pages:/app/website/pages
- ./website/static:/app/website/static
- ./website/sidebars.json:/app/website/sidebars.json
- ./website/siteConfig.js:/app/website/siteConfig.js
working_dir: /app/website
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment