json2tm 0.1.2

VSCode compiled theme -> .tmTheme converter
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM rust:alpine as build

RUN apk add musl-dev

WORKDIR /app

COPY . .
RUN cargo build --release

FROM scratch

COPY --from=build /app/target/release/json2tm /usr/local/bin/
CMD ["json2tm"]