auth-api/tests/Dockerfile

11 lines
104 B
Docker

FROM node:16.3.0-slim
WORKDIR /srv
COPY package* ./
RUN npm ci
COPY . ./
CMD ["npm", "run", "test"]