Initial commit

This commit is contained in:
2020-12-08 19:18:28 +00:00
commit e061b14eec
5 changed files with 219 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
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"]