mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
10564b56a2
* 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
|