guifications/guifications.org

Fix a typo and a few more inline codes

16 months ago, Gary Kramlich
2e45dacda28c
Fix a typo and a few more inline codes
FROM docker.io/python:3-alpine AS build
COPY requirements.txt .
RUN set -ex && \
python3 -m pip install -r requirements.txt
COPY . .
RUN set -ex && \
mkdocs build
FROM docker.io/nginx:latest
COPY --from=build site/ /usr/share/nginx/html/