Guest User

Untitled

a guest
Dec 11th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. FROM node:10.14.1-alpine
  2. # Setup the working directory
  3. RUN mkdir /srv/github-actions-app
  4. WORKDIR /srv/github-actions-app
  5. # Send over the dependency definitions to the container
  6. COPY package.json yarn.lock ./
  7. # Install the dependencies
  8. RUN yarn && yarn cache clean
  9. # Copy the whitelisted files
  10. COPY . .
  11. # Run the tests
  12. RUN yarn test
Add Comment
Please, Sign In to add comment