Skip to content

Instantly share code, notes, and snippets.

@tiborvass
Created October 17, 2015 20:24
Show Gist options
  • Save tiborvass/f4db9c124f0c87704748 to your computer and use it in GitHub Desktop.
Save tiborvass/f4db9c124f0c87704748 to your computer and use it in GitHub Desktop.
Shellinabox Dockerfile
FROM ubuntu:14.04
RUN apt-get update && apt-get -y install git libssl-dev libpam0g-dev zlib1g-dev dh-autoreconf
COPY . /shellinabox
WORKDIR /shellinabox
RUN autoreconf -i
RUN ./configure && make
RUN useradd -m user
USER user
EXPOSE 4200
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment