mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
6c0e9f84b0
Bumps node from 12-alpine to 14-alpine. Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
12 lines
197 B
Docker
12 lines
197 B
Docker
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"] |