Skip to content

Instantly share code, notes, and snippets.

@caseyhoward
Created October 30, 2018 03:27
Show Gist options
  • Save caseyhoward/c360535c794348b8961f2a4a51a177bd to your computer and use it in GitHub Desktop.
Save caseyhoward/c360535c794348b8961f2a4a51a177bd to your computer and use it in GitHub Desktop.
FROM node
RUN curl -o- -L https://yarnpkg.com/install.sh | bash
RUN yarn global add elm@0.19.0-bugfix2
RUN yarn global add elm-test
RUN yarn global add elm-format
RUN yarn global add create-elm-app
COPY . /app
WORKDIR /app
RUN yarn install
RUN cd server && yarn install
RUN elm-app build
RUN rm -rf server/public && cp -r build server/public
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment