dashboard/Dockerfile
Aaron Riedel 228912b257
All checks were successful
continuous-integration/drone/push Build is passing
add docker healthcheck
2024-01-29 20:44:55 +01:00

14 lines
298 B
Docker

FROM node:lts AS build
WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn install
COPY . ./
RUN yarn build
FROM nginx:1.25-alpine3.18
COPY --from=build /app/build /app
COPY data /app/data
COPY nginx.conf /etc/nginx/nginx.conf
HEALTHCHECK CMD curl -fsS -m 10 -o /dev/null http://localhost:8080