Emil25 commited on
Commit
013cf90
1 Parent(s): 2468ce6

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -17
Dockerfile DELETED
@@ -1,17 +0,0 @@
1
- FROM jenkins/jenkins:lts
2
-
3
- USER root
4
-
5
- RUN apt-get update && \
6
- apt-get install -y python3 python3-pip python3-venv
7
-
8
- RUN python3 -m venv /app/venv
9
-
10
- ENV PATH="/app/venv/bin:$PATH"
11
-
12
- RUN pip install --upgrade pip && \
13
- pip install pandas scikit-learn
14
-
15
- USER jenkins
16
-
17
-