1
0
mirror of https://github.com/0rangebananaspy/authelia.git synced 2024-09-14 22:47:21 +07:00
authelia/example/compose/duo-api/Dockerfile
Amir Zarrinkafsh 2fb20882d9
Utilise Buildkite for Authelia CI/CD ()
Publish steps are currently disabled.
2019-12-27 22:07:53 +11:00

12 lines
179 B
Docker

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