diff --git a/Dockerfile b/Dockerfile index ca07793..e537dcf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,14 +1,14 @@ FROM debian:bullseye-slim as builder RUN apt update -# WORKDIR /data -# COPY . . -# RUN apt install -y npm -# RUN npm install -i package.json \ -# && npm run build +WORKDIR /data +COPY . . +RUN apt install -y npm +RUN npm install -i package.json \ + && npm run build -# FROM alpine -# RUN apk update \ -# && apk add lighttpd \ -# && rm -rf /var/cache/apk/* -# COPY --from=builder /data/dist /var/www/localhost/htdocs -# CMD ["lighttpd","-D","-f","/etc/lighttpd/lighttpd.conf"] \ No newline at end of file +FROM alpine +RUN apk update \ + && apk add lighttpd \ + && rm -rf /var/cache/apk/* +COPY --from=builder /data/dist /var/www/localhost/htdocs +CMD ["lighttpd","-D","-f","/etc/lighttpd/lighttpd.conf"] \ No newline at end of file