1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-04 21:25:24 +00:00
bramw_baserow/web-frontend/Dockerfile
2019-10-13 11:29:00 +00:00

10 lines
169 B
Docker

FROM node:10
ADD . /web-frontend
WORKDIR /web-frontend
RUN apt-get update && apt-get -y install make curl gnupg2
RUN make install-dependencies
CMD tail -f /dev/null