mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
10 lines
107 B
Docker
10 lines
107 B
Docker
|
FROM node:10.15.0-jessie
|
||
|
|
||
|
WORKDIR /usr/app
|
||
|
|
||
|
ADD package.json package.json
|
||
|
|
||
|
RUN npm i
|
||
|
|
||
|
CMD ["npm", "start"]
|