auth-api/tests/Dockerfile
lilleman 8173dc4354
Some checks failed
Test and build / build (push) Failing after 20s
The most basic GET accounts
2024-02-11 22:37:04 +01:00

11 lines
111 B
Docker

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