mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
9861467831
This change utilises a specific integration container for the ActiveDirectory suite and simplifies the DuoPush suite.
11 lines
171 B
Docker
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"]
|