scrubcsv 1.0.0

Remove bad lines from large CSV files and normalize the rest
1
2
3
4
5
6
7
8
9
10
# Dockerfile for building static release binaries using musl-libc.

FROM ekidd/rust-musl-builder:latest

# We need to add the source code to the image because `rust-musl-builder`
# assumes a UID of 1000, but TravisCI has switched to 2000.
ADD . ./
RUN sudo chown -R rust:rust .

CMD cargo build --release