1

Putting together docker image

This commit is contained in:
Evan Pratten 2023-07-17 20:01:51 -04:00
parent 5f5b825676
commit 5aae39921c
3 changed files with 20 additions and 1 deletions

3
.dockerignore Normal file
View File

@ -0,0 +1,3 @@
/target
!/target/x86_64-unknown-linux-musl/release/protomask
/.github

View File

@ -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"]

View 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 .