mirror of https://github.com/docker/docs.git
Fix python3 dependency
Signed-off-by: Stefan Scherer <stefan.scherer@docker.com>
This commit is contained in:
parent
785fbbff82
commit
3ff899c68d
|
@ -45,7 +45,7 @@ see a few flaws in the Dockerfile below. But, don't worry. We'll go over them.
|
||||||
```dockerfile
|
```dockerfile
|
||||||
# syntax=docker/dockerfile:1
|
# syntax=docker/dockerfile:1
|
||||||
FROM node:12-alpine
|
FROM node:12-alpine
|
||||||
RUN apk add --no-cache python g++ make
|
RUN apk add --no-cache python3 g++ make
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY . .
|
COPY . .
|
||||||
RUN yarn install --production
|
RUN yarn install --production
|
||||||
|
|
Loading…
Reference in New Issue