website/app/Dockerfile
dependabot[bot] f8cce9bc4d
Bump node from 20-alpine3.17 to 21-alpine3.17 in /app
Bumps node from 20-alpine3.17 to 21-alpine3.17.

---
updated-dependencies:
- dependency-name: node
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-01-08 20:08:17 +00:00

15 lines
213 B
Docker

FROM node:21-alpine3.17 as build
RUN apk update && apk upgrade
WORKDIR /app
COPY . /app
EXPOSE 4173
ARG API_URL
ENV VITE_API_URL_DEV $API_URL
RUN npm install && npm run build
CMD ["npm", "run", "preview"]