diff --git a/.drone.yml b/.drone.yml index 5dd1568..2e6b993 100644 --- a/.drone.yml +++ b/.drone.yml @@ -28,7 +28,7 @@ steps: # registry: "dockerregistry.legaragenumerique.fr" # insecure: true # privileged: true - repo: "greglebreton/terminal-cv:latest" + repo: "greglebreton/terminal-cv" # tags: ${DRONE_TAG} dockerfile: ./Dockerfile diff --git a/Dockerfile b/Dockerfile index 92b0ce5..92339d2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,14 +1,14 @@ FROM debian:bullseye-slim as builder WORKDIR /data COPY . . -RUN apt update && apt install -y npm + +#RUN apt update && apt install -y npm +RUN apt install -y npm RUN npm install -i package.json \ && npm run build FROM alpine - -RUN apk update \ - && apk add lighttpd \ +RUN apk add lighttpd \ && rm -rf /var/cache/apk/* COPY --from=builder /data/dist /var/www/localhost/htdocs