mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-04 21:25:24 +00:00
10 lines
169 B
Docker
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
|