Files
server/attachments/Dockerfile

9 lines
132 B
Docker
Raw Normal View History

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