You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
thumbsup/Dockerfile

11 lines
208 B
Docker

# Node.js + build depdencies + 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