Created
October 17, 2015 20:24
-
-
Save tiborvass/f4db9c124f0c87704748 to your computer and use it in GitHub Desktop.
Shellinabox Dockerfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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