Something went wrong on our end
-
Leander Tolksdorf authoredLeander Tolksdorf authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Dockerfile 208 B
# pull latest node image
FROM node:lts-alpine
# set container's workdir
WORKDIR /client
# install dependencies
COPY package.json ./
RUN npm install
# copy source
COPY . .
EXPOSE 3000
CMD ["npm", "start"]