Skip to content
Snippets Groups Projects
Unverified Commit 9f2d6dfd authored by Aaron Ogle's avatar Aaron Ogle
Browse files

Fully build image from local

parent 76ff42c2
No related merge requests found
FROM danieldent/meteor as builder
FROM ubuntu:16.04 as builder
RUN apt update && apt install curl git bzip2 -y
RUN set -x \
&& curl https://install.meteor.com | sed s/--progress-bar/-sL/g | /bin/sh \
&& export PATH="$HOME/.meteor:$PATH"
COPY . /app
RUN meteor npm i
WORKDIR /app
RUN meteor build --allow-superuser --headless --directory /tmp/build
RUN set -x \
&& meteor npm i --unsafe-perm
RUN set -x \
&& meteor build --allow-superuser --headless --directory /tmp/build
FROM rocketchat/base:4
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment