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