authelia/internal/suites/example/compose/duo-api/Dockerfile
Amir Zarrinkafsh 9861467831
ci: add integration container for samba and refactor duo (#3480)
This change utilises a specific integration container for the ActiveDirectory suite and simplifies the DuoPush suite.
2022-06-05 03:51:33 +10:00

11 lines
171 B
Docker

FROM node:18-alpine
WORKDIR /usr/app/src
ADD package.json package.json
RUN yarn install --frozen-lockfile --production --silent
EXPOSE 3000
CMD ["node", "duo_api.js"]