mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
24dfa98df0
* Fix SSL validation * Minor bug fixes * Update appveyor * Fix select colors * Updated Dockerfile
13 lines
326 B
Docker
13 lines
326 B
Docker
FROM ubuntu:14.04
|
|
|
|
RUN mkdir -p /insomnia /insomnia-tmp
|
|
WORKDIR /insomnia
|
|
|
|
RUN sudo apt-get update
|
|
|
|
RUN sudo apt-get install -y \
|
|
curl libcurl4-openssl-dev build-essential \
|
|
git-all icnsutils graphicsmagick xz-utils
|
|
|
|
RUN curl -sL https://deb.nodesource.com/setup_7.x | sudo -E bash - && sudo apt-get install -y nodejs
|