welbex-job-interview/frontend.Dockerfile

10 lines
114 B
Docker

FROM node:22-bullseye
WORKDIR /opt/frontend
COPY frontend .
RUN npm i
EXPOSE 3000
CMD ["npm", "run", "start"]