Skip to content

Commit

Permalink
maint: Update Dockerfile to omit mkdocs so that pre-builds will compl…
Browse files Browse the repository at this point in the history
…ete successfully (#2886)

Currently prebuilds are failing and we might need to move from python3-pip to python3-full which will add build time and a few other variables into our pipeline.  Looking to put in a simple workaround for now (so that codespaces spin up does not cause a huge time delay as well as to fix create code spaces functionally from GitHub.com
  • Loading branch information
nickfloyd committed Feb 15, 2024
1 parent e4af6f9 commit b87c3d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ FROM mcr.microsoft.com/vscode/devcontainers/dotnet
COPY --from=mcr.microsoft.com/dotnet/sdk:6.0 /usr/share/dotnet/shared /usr/share/dotnet/shared

# # Add mkdocs for doc generation
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive && apt-get -y install --no-install-recommends python3-pip
RUN pip3 install mkdocs
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive && apt-get -y install --no-install-recommends python3-pip
# RUN pip3 install mkdocs

RUN apt-get install -y mono-complete

0 comments on commit b87c3d1

Please sign in to comment.