Mise à jour de 'Dockerfile'
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
gregandev 2023-06-12 11:46:19 +02:00
parent 7df8a5b835
commit bd7b805c6c

View File

@ -1,8 +1,7 @@
FROM debian:bullseye-slim as builder
RUN apt update
WORKDIR /data
COPY . .
RUN apt-get install npm
RUN apt-get update && apt-get install npm
RUN npm install -i package.json \
&& npm run build
FROM alpine