2
0
mirror of https://github.com/thumbsup/thumbsup synced 2024-11-17 15:25:50 +00:00
thumbsup/Dockerfile

11 lines
210 B
Docker
Raw Normal View History

2018-04-24 19:19:33 +00:00
# Node.js + build dependencies + runtime dependencies
FROM thumbsupgallery/build:alpine
# Install and cache dependencies
COPY package.json /app
RUN npm install
# Run the tests
COPY . /app
RUN scripts/cibuild