svg-to-dxf/Dockerfile
2020-12-08 19:18:28 +00:00

11 lines
217 B
Docker

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"]