Files
pombas_n fc6075b423
build & run container / build (push) Successful in 1m16s
Update Dockerfile
2026-06-11 08:54:22 +02:00

12 lines
138 B
Docker

FROM node:22-bookworm-slim AS frontend-build
WORKDIR /app/
COPY package*.json ./
RUN npm i
COPY . ./
EXPOSE 4200
CMD ["npm", "start"]