Fix python3 dependency

Signed-off-by: Stefan Scherer <stefan.scherer@docker.com>
This commit is contained in:
Stefan Scherer 2021-11-10 17:21:46 +01:00
parent 785fbbff82
commit 3ff899c68d
No known key found for this signature in database
GPG Key ID: 0EA4429C4C69C02B
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ see a few flaws in the Dockerfile below. But, don't worry. We'll go over them.
```dockerfile
# syntax=docker/dockerfile:1
FROM node:12-alpine
RUN apk add --no-cache python g++ make
RUN apk add --no-cache python3 g++ make
WORKDIR /app
COPY . .
RUN yarn install --production