7 lines
69 B
Docker
7 lines
69 B
Docker
FROM node:16-alpine
|
|
|
|
WORKDIR /usr/app
|
|
|
|
COPY . .
|
|
|
|
CMD ["yarn", "test"] |