Skip to content
Snippets Groups Projects
Commit f52fc65a authored by MrJoshE's avatar MrJoshE
Browse files

remove copy

parent c63b5036
No related branches found
No related tags found
No related merge requests found
Pipeline #46756 failed
# pull official base image
FROM node:13.12.0-alpine
# set working directory
WORKDIR /app
# install app dependencies
COPY package.json ./
COPY package-lock.json ./
RUN npm install --silent
RUN npm install react-scripts@3.4.1 -g --silent
# add app
COPY . ./
# start app
CMD ["npm", "start"]
\ No newline at end of file
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