1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-24 07:36:40 +02:00
keeweb/.github/actions/linux-build/Dockerfile
2020-04-04 18:02:32 +02:00

12 lines
312 B
Docker

FROM snapcore/snapcraft:stable
COPY entrypoint.sh /entrypoint.sh
RUN apt-get update
RUN apt-get install -y build-essential git-core unzip curl pkg-config rpm
RUN curl -sL https://deb.nodesource.com/setup_13.x | sudo -E bash -
RUN apt-get install -y nodejs
RUN npm i -g grunt-cli
ENTRYPOINT ["/entrypoint.sh"]