Move Dockerfile to Debian

This commit is contained in:
Nolan Poe 2022-12-11 04:41:11 +00:00
parent 118128f2e9
commit 3e3312577f

View file

@ -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