1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-08-26 23:09:46 +02:00
bitwarden-browser/Dockerfile
2017-08-07 17:07:56 -04:00

12 lines
160 B
Docker

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"]