Add Dockerfile

This commit is contained in:
Elara 2022-12-20 14:03:40 -08:00
parent cea2117b56
commit ddec44c807
1 changed files with 10 additions and 0 deletions

10
docker/Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM node:19-alpine
RUN apk add git
RUN git clone https://gitea.arsenm.dev/Arsen6331/lure-web
RUN cd lure-web && \
npm i && \
LURE_WEB_API_URL='http://api.lure.arsenm.dev' npm run build
WORKDIR /lure-web
ENTRYPOINT node build