Skip to content
Snippets Groups Projects
Commit 47d1bd05 authored by s80984's avatar s80984
Browse files

Update build pipeline

parent d0225580
No related branches found
No related tags found
No related merge requests found
Pipeline #14145 failed
FROM node:16
# Create app directory
# WORKDIR /usr/src/app
WORKDIR /usr/src/app
# COPY ./client/package*.json ./
COPY package*.json ./
RUN npm install
# Bundle app source
COPY . .
EXPOSE 3000
CMD [ "npm", "run test" ]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment