We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b20ea0 commit 7e8c943Copy full SHA for 7e8c943
Dockerfile
@@ -1,13 +1,12 @@
1
-FROM node:alpine
+FROM node:10.4.0
2
3
# Install Python.
4
-RUN apk add --no-cache bash python && \
5
- python -m ensurepip && \
6
- rm -r /usr/lib/python*/ensurepip && \
7
- pip install --upgrade pip setuptools && \
8
- rm -r /root/.cache
9
-
10
-RUN pip install -U "tox"
+RUN apt-get update && apt-get install -y \
+ python2.7 \
+ python-pip \
+ && rm -rf /var/lib/apt/lists/* \
+ && pip install -U "tox" \
+ && npm i npm
11
12
# Define working directory.
13
WORKDIR /src
0 commit comments