svg-to-dxf/Dockerfile

11 lines
217 B
Docker
Raw Normal View History

2020-12-08 19:18:28 +00:00
FROM jess/inkscape
RUN apt-get update && apt-get install -y python-lxml python-numpy
WORKDIR /app
RUN apt-get update && apt-get install -y golang
ADD main.go .
RUN go build -o main main.go
ENTRYPOINT ["/app/main"]