Signed-off-by: Jess Frazelle <acidburn@jessfraz.com>
This commit is contained in:
Jess Frazelle 2020-02-12 13:34:08 -08:00
parent 90e2ca1d48
commit 14a4915fde
No known key found for this signature in database
GPG key ID: 4BB1599E1A3071F2

16
cura/Dockerfile Normal file
View file

@ -0,0 +1,16 @@
FROM ubuntu:bionic
RUN apt-get update && apt-get install -y \
ca-certificates \
wget \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
RUN wget https://gitlab.com/lulzbot3d/cura-le/cura-lulzbot/uploads/0676b39295476b93181fa8a512f34265/cura-lulzbot_3.2.21_amd64.deb -O /tmp/cura.deb \
&& apt update \
&& dpkg -i /tmp/cura.deb || true \
&& apt-get -yf install \
&& rm -rf /var/lib/apt/lists/* \
&& rm -rf /tmp/cura.deb
CMD ["cura-lulzbot"]