1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-08-26 23:09:46 +02:00
bitwarden-browser/Dockerfile
2017-10-02 21:27:44 -04:00

11 lines
141 B
Docker

FROM bitwarden/server
WORKDIR /app
COPY ./dist .
EXPOSE 80
COPY entrypoint.sh /
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]