This repository has been archived on 2026-07-13. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
servicepoint-tanks/tank-frontend/Dockerfile
2024-04-21 14:35:58 +02:00

13 lines
177 B
Docker

FROM node:21-alpine AS build-client
WORKDIR /app
# dependencies
COPY package.json .
COPY package-lock.json .
RUN npm i
# build
env CONTAINERMODE 1
COPY . .
RUN npm run build