Skip to content
Snippets Groups Projects
Commit eb143120 authored by rma1403's avatar rma1403
Browse files

feat: added dockerfile

parent 57272be9
Branches production
No related merge requests found
Pipeline #60198 failed with stages
in 2 minutes and 23 seconds
FROM node:21-bookworm-slim
WORKDIR /usr/app
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build
EXPOSE 3000
CMD ["npm", "run", "start:prod"]
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment