Skip to content

Instantly share code, notes, and snippets.

@marcingrzejszczak
Last active August 29, 2015 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcingrzejszczak/a47ba311218d1b5373e4 to your computer and use it in GitHub Desktop.
Save marcingrzejszczak/a47ba311218d1b5373e4 to your computer and use it in GitHub Desktop.
Dockerfile - debian with python
FROM tutum/debian:wheezy
# Install packages
RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get -y install python python-apt man less vim cowsay curl wget
RUN export LANGUAGE=en_US.UTF-8
RUN export LANG=en_US.UTF-8
RUN export LC_ALL=en_US.UTF-8
#RUN dpkg-reconfigure locales
#RUN locale-gen en_US.UTF-8
EXPOSE 22
EXPOSE 80
EXPOSE 9200
CMD ["/run.sh"]
@marcingrzejszczak
Copy link
Author

docker run -d -p 2222:22 -e ROOT_PASS="root" marcin

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment