1
0
mirror of https://github.com/bitwarden/browser synced 2024-12-18 20:33:00 +01:00
bitwarden-estensione-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"]