Skip to content

Commit

Permalink
update build/reqs
Browse files Browse the repository at this point in the history
  • Loading branch information
wh1te909 committed Mar 24, 2024
1 parent 6aaa41f commit 5c74266
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ python3 -m venv env
source env/bin/activate
pip install --upgrade pip
pip install --upgrade setuptools wheel
pip install mkdocs mkdocs-material pymdown-extensions
pip install -r requirements.txt
mkdocs serve
```

Expand Down
6 changes: 4 additions & 2 deletions dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
FROM python:3.9-alpine
FROM python:3.10-alpine

COPY requirements.txt /tmp/requirements.txt

RUN pip install --upgrade pip && \
pip install --upgrade setuptools wheel && \
pip install mkdocs mkdocs-material pymdown-extensions
pip install -r /tmp/requirements.txt

EXPOSE 8005

Expand Down
3 changes: 2 additions & 1 deletion startdevmkdocsonwindows.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ python -m venv env

# Install requirements first time only
python -m pip install --upgrade pip #only 1st time
pip install --upgrade mkdocs mkdocs-material pymdown-extensions
pip install --upgrade setuptools wheel
pip install -r requirements.txt

# Run mkdocs and look at changes as you make them
Start-Process http://localhost:8005 #Opens Browser
Expand Down

0 comments on commit 5c74266

Please sign in to comment.