Merge pull request #1157 from michielbdejong/docker

feat(docker): Add Dockerfile for self-hosting r=vladikoff
This commit is contained in:
Vlad Filippov 2016-01-26 09:26:15 -05:00
Родитель 878d375eb2 c96cec15c3
Коммит 5feb627998
2 изменённых файлов: 17 добавлений и 0 удалений

1
.dockerignore Normal file
Просмотреть файл

@ -0,0 +1 @@
.git

16
docs/self-host.docker Normal file
Просмотреть файл

@ -0,0 +1,16 @@
FROM vladikoff/fxa-slim-image:1.0.0
RUN adduser --disabled-password --gecos '' fxa && adduser fxa sudo && echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
COPY . /home/fxa/fxa-auth-server
WORKDIR /home/fxa/fxa-auth-server
RUN chown -R fxa .
USER fxa
RUN npm install --production \
&& npm cache clear
CMD node ./bin/key_server.js | node ./bin/notifier.js
# Expose ports
EXPOSE 9000