Skip to content

Commit 951f454

Browse files
author
Aviv Laufer
committed
Docker file for testing
1 parent 3e3dbd9 commit 951f454

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Dokerfile.test

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
# Get python version
22
FROM python:3.11-slim
33
RUN apt-get update \
4-
&& apt-get install -y wget
4+
&& apt-get install -y wget git
55

66
RUN mkdir pl
77
WORKDIR pl
88
ADD . $WORKDIR
99
RUN pip install --upgrade pip
1010
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
1114
RUN wget https://github.com/protoconf/protoconf/releases/download/v0.2.0-alpha1/protoconf_0.2.0-alpha1_linux_amd64.tar.gz
1215
RUN tar xvzf protoconf_0.2.0-alpha1_linux_amd64.tar.gz
1316
RUN cp protoconf /usr/local/bin

0 commit comments

Comments
 (0)