mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 16:57:35 +00:00
15 lines
292 B
Docker
15 lines
292 B
Docker
FROM node:22-alpine AS build
|
|
WORKDIR /app
|
|
|
|
COPY package.json package-lock.json ./
|
|
RUN npm ci
|
|
|
|
COPY . ./
|
|
RUN npm run build
|
|
|
|
FROM nginx:alpine AS runtime
|
|
COPY --from=build /app/dist/winstudentgoaltracker/browser /usr/share/nginx/html
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
|
|
EXPOSE 8006
|