diff --git a/frontend/Dockerfile b/frontend/Dockerfile index b87085b46a..24062d4a84 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -1,4 +1,4 @@ -FROM node:24-alpine as build +FROM node:26-alpine as build LABEL org.opencontainers.image.source https://github.com/CDCgov/prime-simplereport # Add bash and git @@ -49,7 +49,7 @@ RUN echo "REACT_APP_CONTENT_SECURITY_POLICY_SCRIPT_SRC=''" >> .env.production.lo RUN yarn run build # production environment -FROM node:23-alpine +FROM node:26-alpine RUN npm install -g serve WORKDIR /app/frontend COPY --from=build /app/frontend/build /app/frontend/build