Skip to content
Snippets Groups Projects
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"]