mirror of
https://github.com/thumbsup/thumbsup
synced 2024-11-05 12:01:04 +00:00
11 lines
208 B
Docker
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
|