OCram85
4f2c65b69f
#### 📖 Summary - remove leading . in pipeline files. - remove build arg for renovate support. #### 📑 Test Plan > 💡 Select your test plan for the code changes. - [x] Tested via CI pipeline - [ ] Custom test - [ ] No test plan ##### Details / Justification <!-- Add your test details or justification for missing tests here. --> #### 📚 Additional Notes <!-- A place for additional detail notes. --> Co-authored-by: OCram85 <marco.blessing@googlemail.com> Reviewed-on: #29
15 lines
414 B
Docker
15 lines
414 B
Docker
FROM node:lts-buster-slim as builder
|
|
COPY . /src
|
|
#RUN ls -la
|
|
WORKDIR /src
|
|
#RUN ls -a
|
|
RUN npm install \
|
|
&& npm run build
|
|
|
|
FROM nginx:1.23.1-alpine as prod
|
|
LABEL maintainer="marco.blessing@googlemail.com"
|
|
HEALTHCHECK --interval=15s --timeout=5s \
|
|
CMD wget --no-verbose --tries=1 --spider http://localhost:80/ || exit 1
|
|
COPY --from=builder src/public /usr/share/nignx/html/
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|