mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-05 18:36:41 +00:00
nuke Dockerfile
This commit is contained in:
parent
cb8ff2a323
commit
ea0657d266
1 changed files with 0 additions and 29 deletions
29
Dockerfile
29
Dockerfile
|
@ -1,29 +0,0 @@
|
||||||
FROM python:3.11-bookworm as pre-build
|
|
||||||
|
|
||||||
ENV POETRY_HOME=/opt/poetry
|
|
||||||
RUN curl -sSL https://install.python-poetry.org | python3 -
|
|
||||||
|
|
||||||
FROM pre-build as build
|
|
||||||
|
|
||||||
WORKDIR /app
|
|
||||||
|
|
||||||
COPY ./pyproject.toml ./
|
|
||||||
COPY ./poetry.lock ./
|
|
||||||
|
|
||||||
RUN $POETRY_HOME/bin/poetry install
|
|
||||||
|
|
||||||
COPY ./mkdocs.yml ./
|
|
||||||
COPY ./docs ./docs
|
|
||||||
COPY ./README.md ./docs/README.md
|
|
||||||
|
|
||||||
RUN $POETRY_HOME/bin/poetry run mkdocs build
|
|
||||||
|
|
||||||
|
|
||||||
FROM python:3.11-alpine as runtime
|
|
||||||
|
|
||||||
WORKDIR /app
|
|
||||||
|
|
||||||
COPY --from=build ./app/site ./
|
|
||||||
|
|
||||||
ENTRYPOINT [ "python3" ]
|
|
||||||
CMD [ "-m", "http.server", "8000" ]
|
|
Loading…
Add table
Reference in a new issue