1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-07 22:18:17 -05:00
bitwarden/attachments/Dockerfile
2017-08-08 17:27:01 -04:00

9 lines
132 B
Docker

FROM node
RUN npm install http-server -g
EXPOSE 80
COPY entrypoint.sh /
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]