We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64efb2c commit cfca2e7Copy full SHA for cfca2e7
.devcontainer/Dockerfile
@@ -15,12 +15,12 @@ USER $USER
15
ENV PATH "$PATH:/home/$USER/.local/bin"
16
17
# update pip
18
-RUN python -m pip install --upgrade pip && \
19
- pip install black flake8 pre-commit
+RUN python -m pip install --upgrade pip
20
21
# enter src directory
22
WORKDIR /home/$USER/src
23
24
# copy and install packages
25
COPY . .
+RUN pip install -r .devcontainer/requirements.txt
26
RUN pip install -r tests/requirements.txt
.devcontainer/requirements.txt
@@ -0,0 +1,5 @@
1
+black
2
+build
3
+flake8
4
+pre-commit
5
+twine
0 commit comments