This commit is contained in:
Davidson Gomes
2024-06-09 21:43:53 -03:00
parent 7b2f8fa5e1
commit dae04c5a2f
3 changed files with 26 additions and 10 deletions
+3 -6
View File
@@ -1,11 +1,8 @@
FROM node:20-bullseye-slim AS base
RUN apt-get update -y
RUN apt-get upgrade -y
RUN apt-get install -y git tzdata ffmpeg wget curl
RUN npm i -g npm@latest
RUN apt-get update -y && apt-get upgrade -y && \
apt-get install -y git tzdata ffmpeg wget curl && \
npm i -g npm@latest
FROM base AS builder