File tree Expand file tree Collapse file tree 2 files changed +4
-7
lines changed
Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -12,15 +12,13 @@ RUN python3 -m pip install --upgrade \
1212 gitpython==3.1.41
1313
1414# [Optional] If your pip requirements rarely change, uncomment this section to add them to the image.
15- COPY .pre-commit-config.yaml /tmp /
15+ COPY .pre-commit-config.yaml /home/vscode /
1616COPY requirements.txt /tmp/pip-tmp/
17- RUN pip3 --disable-pip-version-check --no-cache-dir install -r /tmp/pip-tmp/requirements.txt \
18- && rm -rf /tmp/pip-tmp
17+ RUN pip install -r /tmp/pip-tmp/requirements.txt
1918
2019# [Optional] Uncomment this section to install additional OS packages.
2120RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
22- && apt-get -y install --no-install-recommends nodejs npm vim \
23- && rm -rf /var/lib/apt/lists/*
24-
21+ && apt-get -y install --no-install-recommends nodejs npm vim
22+
2523# [Optional] Uncomment this line to install global node packages.
2624RUN npm install -g husky markdownlint
Original file line number Diff line number Diff line change 11{
22 "dockerFile" : " Dockerfile" ,
33 "features" : {
4- "ghcr.io/devcontainers-contrib/features/markdownlint-cli:1" : {},
54 },
65 // Configure tool-specific properties.
76 "customizations" : {
You can’t perform that action at this time.
0 commit comments