From 3ba932209fc33206a28483d07fb0e108d1b16a2b Mon Sep 17 00:00:00 2001 From: jaseg Date: Mon, 4 Jul 2022 23:57:28 +0200 Subject: gerboweb: add deployment stuff --- gerboweb/Containerfile.develop | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 gerboweb/Containerfile.develop (limited to 'gerboweb/Containerfile.develop') diff --git a/gerboweb/Containerfile.develop b/gerboweb/Containerfile.develop new file mode 100644 index 0000000..92f9558 --- /dev/null +++ b/gerboweb/Containerfile.develop @@ -0,0 +1,12 @@ +FROM docker.io/archlinux:latest +MAINTAINER gerbolyze@jaseg.de +RUN pacman --noconfirm -Syu +RUN pacman --noconfirm -Sy pugixml opencv pango cairo git python make clang rustup cargo python-pip base-devel gerbv rsync tmux +RUN rustup install stable +RUN rustup default stable +RUN cargo install usvg resvg +RUN mkdir /app /gerbolyze +RUN python3 -m pip install pip==21.3.1 +RUN python3 -m pip install flask numpy lxml wasmtime svg_flatten_wasi resvg_wasi flask_wtf +COPY develop-startup.sh /app/ +ENTRYPOINT /app/develop-startup.sh -- cgit