File tree 2 files changed +11
-2
lines changed
2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -10,13 +10,19 @@ rpm: rpm-image
10
10
-e ITERATION=$(COMMIT ) \
11
11
pypi-server:centos7 python /mnt/package/make-rpm.py
12
12
13
- deb : deb8-image ubuntu-image
13
+ deb : deb8-image deb8-image ubuntu-image
14
14
docker run --rm -t \
15
15
-v $(PWD ) :/mnt \
16
16
-v /tmp/pip-cache-debian:/root/.cache/pip \
17
17
-e ITERATION=debian8-$(COMMIT ) \
18
18
pypi-server:debian8 python3 /mnt/package/make-deb.py
19
19
20
+ docker run --rm -t \
21
+ -v $(PWD):/mnt \
22
+ -v /tmp/pip-cache-debian:/root/.cache/pip \
23
+ -e ITERATION=debian9-$(COMMIT) \
24
+ pypi-server:debian9 python3 /mnt/package/make-deb.py
25
+
20
26
docker run --rm -t \
21
27
-v $(PWD):/mnt \
22
28
-v /tmp/pip-cache-debian:/root/.cache/pip \
@@ -31,6 +37,9 @@ rpm-image:
31
37
deb8-image :
32
38
docker build -t pypi-server:debian8 -f package/Dockerfile.debian8 package
33
39
40
+ deb9-image :
41
+ docker build -t pypi-server:debian9 -f package/Dockerfile.debian9 package
42
+
34
43
ubuntu-image :
35
44
docker build -t pypi-server:ubuntu -f package/Dockerfile.ubuntu package
36
45
Original file line number Diff line number Diff line change 1
- FROM mosquito/fpm:debian8
1
+ FROM mosquito/fpm:debian9
2
2
3
3
RUN apt-get update && apt-get install -y python3-pip python3-dev
4
4
RUN pip3 install -U pip virtualenv sh plumbum
You can’t perform that action at this time.
0 commit comments