Files
aerbim-ht-monitor/frontend/Dockerfile
2025-10-04 13:19:12 +03:00

13 lines
197 B
Docker

FROM node:23-alpine
WORKDIR /app
COPY --chmod=755 <<EOT ./entrypoint.sh
#!/usr/bin/env sh
set -e
npm run build &&
npm start
EOT
COPY . ./
RUN npm install
EXPOSE 3000
ENTRYPOINT ["./entrypoint.sh"]