1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-13 01:58:44 +02:00
bitwarden-browser/Dockerfile

12 lines
160 B
Docker
Raw Normal View History

2017-08-07 23:07:56 +02:00
FROM node
RUN npm install http-server -g
WORKDIR /app
EXPOSE 80
COPY ./dist .
COPY entrypoint.sh /
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]