Skip to content

Instantly share code, notes, and snippets.

@shikhirsingh
Last active September 7, 2020 00:38
Show Gist options
  • Save shikhirsingh/96c51e6fb056d247eb6792095375a65a to your computer and use it in GitHub Desktop.
Save shikhirsingh/96c51e6fb056d247eb6792095375a65a to your computer and use it in GitHub Desktop.
Raspberry Pi Docker Starter
FROM arm64v8/ubuntu:bionic-20200807
RUN \
apt-get update && \
apt-get install -y --no-install-recommends apt-utils && \
apt-get -y install vim && \
apt-get install -y lynx && \
apt-get -y install default-jre && \
apt-get -y install expect
RUN echo "Finished building container"
ENTRYPOINT bash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment