diff --git a/Dockerfile b/Dockerfile index cd6a5c2..e0e0c27 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ # build app -FROM docker.io/node:current-alpine3.15 AS builder +FROM docker.io/node AS builder -RUN apk update -RUN apk add git +RUN apt update +RUN apt install git COPY . /app WORKDIR /app