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 f101434 commit 92b60f2Copy full SHA for 92b60f2
Dockerfile
@@ -1,10 +1,10 @@
1
#syntax=docker/dockerfile:1
2
3
FROM node:20-alpine AS base
4
-RUN apt-get update -y && apt-get install -y ca-certificates git openssl
+RUN apk update && apk add ca-certificates git openssl
5
6
FROM base AS build
7
-RUN apt-get update -y && apt-get install -y build-essential python3
+RUN apk update && apk add alpine-sdk python3
8
WORKDIR /app
9
COPY package.json yarn.lock .yarnrc.yml ./
10
COPY ./.yarn/ .yarn/
0 commit comments