Skip to content

Commit 8cf835d

Browse files
feature: Add GNU make to the image.
1 parent dd774b7 commit 8cf835d

2 files changed

Lines changed: 10 additions & 1 deletion

File tree

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@ FROM python:3.7.3-slim-stretch
33
RUN pip install pip==19.1 pre-commit==1.15.2
44

55
ENV POETRY_VERSION=0.12.14
6-
RUN apt update && apt install -y curl
6+
RUN apt update && apt install -y curl make
77
RUN curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python
88

99
ENV PATH="/root/.poetry/bin:${PATH}"
10+
RUN poetry config settings.virtualenvs.create false
1011

12+
WORKDIR /app
1113
CMD ["python3"]

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@ Docker image.
99
FROM playpauseandstop/docker-python
1010
```
1111

12+
### Included dev-tools
13+
14+
- [pip](https://pip.pypa.io) 19.1
15+
- [poetry](https://poetry.eustace.io) 0.12.14
16+
- [pre-commit](https://pre-commit.com) 1.15.2
17+
- [make](https://www.gnu.org/software/make)
18+
1219
## Development
1320

1421
To build an image:

0 commit comments

Comments
 (0)