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

This commit is contained in:
gregandev 2023-06-12 11:55:46 +02:00
parent bd7b805c6c
commit ce944839a9

View File

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