fh1ch/node-bacstack

View on GitHub
Dockerfile

Summary

Maintainability
Test Coverage
FROM node:16-alpine

# Set working directory
WORKDIR /bacstack

# Install dependencies
COPY package.json .
COPY yarn.lock .
RUN yarn --frozen-lockfile

# Add node-bacstack
Add . .

# Run compliance tests
CMD yarn compliance