ui-tabs-frontend/Dockerfile
cheetah 307eea106b
Some checks failed
build / build (push) Failing after 6s
added ci/cd
2025-04-05 05:03:31 +02:00

16 lines
No EOL
173 B
Docker

ARG NODE_VERSION=23.0.0
FROM node:${NODE_VERSION}-alpine
ENV NODE_ENV production
WORKDIR /usr/src/app
COPY . .
RUN npm install
USER node
EXPOSE 3250
CMD node index.js