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 3e3dbd9 commit 951f454Copy full SHA for 951f454
Dokerfile.test
@@ -1,13 +1,16 @@
1
# Get python version
2
FROM python:3.11-slim
3
RUN apt-get update \
4
- && apt-get install -y wget
+ && apt-get install -y wget git
5
6
RUN mkdir pl
7
WORKDIR pl
8
ADD . $WORKDIR
9
RUN pip install --upgrade pip
10
RUN pip install -r requirements-test.txt
11
+RUN wget https://cli.codecov.io/latest/linux/codecov
12
+RUN chmod +x codecov
13
+RUN cp codecov /usr/local/bin
14
RUN wget https://github.com/protoconf/protoconf/releases/download/v0.2.0-alpha1/protoconf_0.2.0-alpha1_linux_amd64.tar.gz
15
RUN tar xvzf protoconf_0.2.0-alpha1_linux_amd64.tar.gz
16
RUN cp protoconf /usr/local/bin
0 commit comments