1
0
mirror of https://github.com/0rangebananaspy/authelia.git synced 2024-09-14 22:47:21 +07:00
authelia/internal/suites/example/compose/duo-api/Dockerfile

12 lines
197 B
Docker
Raw Normal View History

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