mirror of
https://github.com/icewind1991/notify-redis.git
synced 2026-06-03 10:14:13 +02:00
8 lines
No EOL
229 B
Docker
8 lines
No EOL
229 B
Docker
FROM ekidd/rust-musl-builder
|
|
|
|
# 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 |