mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-21 14:47:46 -04:00
* Version number and changelog scroll * Fixed CodeMirror tooltip css * AUtocomplete dropdown styling * Docker Ubuntu build and some tweaks * Fix SSL verificatioN * Don't show SSL data * Update README * Fixed URL paste handler * Import from curl improvements * Minor things
14 lines
329 B
Docker
14 lines
329 B
Docker
FROM ubuntu:14.04
|
|
|
|
RUN mkdir -p /insomnia
|
|
WORKDIR /insomnia
|
|
COPY . /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
|