auth-api/tests/Dockerfile
Lilleman 3abefb9adf
Some checks failed
continuous-integration/drone/push Build is failing
Fixed internal server error for trying to login with wrong username
2022-02-27 17:32:30 +01:00

11 lines
110 B
Docker

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