Putting together docker image
This commit is contained in:
parent
5f5b825676
commit
5aae39921c
3
.dockerignore
Normal file
3
.dockerignore
Normal file
@ -0,0 +1,3 @@
|
||||
/target
|
||||
!/target/x86_64-unknown-linux-musl/release/protomask
|
||||
/.github
|
@ -1 +1,7 @@
|
||||
# FROM
|
||||
FROM alpine:latest
|
||||
|
||||
# Copy the binary from the builder container
|
||||
COPY ./target/x86_64-unknown-linux-musl/release/protomask /usr/local/bin/protomask
|
||||
|
||||
# NOTE: We expect the config file to be mounted at /etc/protomask.toml
|
||||
ENTRYPOINT ["/usr/local/bin/protomask", "/etc/protomask.toml"]
|
10
scripts/build_release_packages.sh
Normal file
10
scripts/build_release_packages.sh
Normal file
@ -0,0 +1,10 @@
|
||||
#! /bin/bash
|
||||
# Builds everything needed for a new release
|
||||
set -ex
|
||||
|
||||
# Build RPM
|
||||
cargo rpm build
|
||||
|
||||
# Build Docker image
|
||||
cross build --release --target x86_64-unknown-linux-musl
|
||||
docker build -t ewpratten/protomask:latest .
|
Loading…
x
Reference in New Issue
Block a user