mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-01-30 18:36:29 +00:00
12 lines
186 B
Text
12 lines
186 B
Text
FROM node:10
|
|
|
|
ADD . /web-frontend
|
|
|
|
WORKDIR /web-frontend
|
|
|
|
RUN apt-get update
|
|
RUN apt-get -y install make
|
|
RUN apt-get -y install curl
|
|
RUN apt-get -y install gnupg2
|
|
|
|
CMD tail -f /dev/null
|