Skip to content

Commit ad17aa2

Browse files
committed
Update Python to 3.6.5
1 parent 4bf0e56 commit ad17aa2

File tree

4 files changed

+23
-10
lines changed

4 files changed

+23
-10
lines changed

.verchew.ini

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,15 @@
33
cli = make
44
version = GNU Make
55

6+
[Git]
7+
8+
cli = git
9+
version = 2.
10+
611
[Python]
712

813
cli = python
9-
version = Python 3.6.
14+
version = Python 3.6.5
1015

1116
[pipenv]
1217

@@ -32,7 +37,6 @@ version = 1.
3237

3338
cli = firefox
3439
version = 55.
35-
message = This binary is absent on macOS.
3640

3741
[Firefox WebDriver]
3842

Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
FROM circleci/python:3.6.4-stretch-browsers
1+
FROM circleci/python:3.6.5-stretch-browsers
2+
3+
# System
4+
5+
USER root
26

37
# Pipenv
48

Makefile

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ TAG = python-node:latest
33
.PHONY: all
44
all: build
55

6-
.PHONY: ci
7-
ci: build test
8-
96
# LOCAL #######################################################################
107

118
.PHONY: doctor
@@ -16,8 +13,8 @@ doctor:
1613

1714
.PHONY: build
1815
build:
19-
docker build . --tag=$(TAG)
16+
docker build . --pull --tag=$(TAG)
2017

2118
.PHONY: test
2219
test:
23-
docker run -v $(PWD):/host -i $(TAG) bash -c "cd ~ && cp -a /host/. . && make doctor"
20+
docker run -v $(PWD):/host -i $(TAG) bash -c "cp -a /host/. . && make doctor"

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
1-
# Docker: Python, Pipenv, Firefox, Node, Yarn
21

32
[![Build Status](https://travis-ci.org/maketested/docker-python-node.svg?branch=master)](https://travis-ci.org/maketested/docker-python-node)
43

5-
https://hub.docker.com/r/maketested/python-node/
4+
# Docker: Python, Pipenv, Node, Yarn, Firefox
5+
6+
To test locally:
7+
8+
```
9+
$ make build
10+
$ make test
11+
```
12+
13+
Pushed changes are automatically built on [Docker Hub](https://hub.docker.com/r/maketested/python-node/builds).

0 commit comments

Comments
 (0)