mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-05 23:06:10 +00:00
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
15 lines
637 B
Docker
15 lines
637 B
Docker
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.234.0/containers/dotnet/.devcontainer/base.Dockerfile
|
|
|
|
# [Choice] .NET version: 6.0, 6.0-bullseye, 6.0-focal
|
|
ARG VARIANT="6.0-bullseye"
|
|
FROM mcr.microsoft.com/vscode/devcontainers/dotnet
|
|
|
|
# "install" the dotnet 6.0 runtime for tests
|
|
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 install -y mono-complete
|