Skip to content

Instantly share code, notes, and snippets.

@PatrickFranken
Created February 8, 2021 14:14
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 PatrickFranken/23a23881771d345c7ce2334f29bc7df4 to your computer and use it in GitHub Desktop.
Save PatrickFranken/23a23881771d345c7ce2334f29bc7df4 to your computer and use it in GitHub Desktop.
FROM ubuntu:latest
WORKDIR /app
ENV DEBIAN_FRONTEND="noninteractive"
RUN apt-get update && apt-get install -y software-properties-common && \
add-apt-repository ppa:kicad/kicad-dev-nightly && \
apt-get install -y kicad-nightly && \
apt-get install -y ruby ruby-dev build-essential && \
apt-get -y autoremove && \
rm -rf /var/lib/apt/lists/*
COPY src .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment