make "hear about" optional, make CA certificates _not_

This commit is contained in:
Ryan Heywood 2024-09-04 15:34:15 -04:00
parent 31d701ac72
commit 819784404e
Signed by: ryan
GPG Key ID: 8E401478A3FBEF72
2 changed files with 2 additions and 1 deletions

View File

@ -46,6 +46,7 @@ COPY --from=gcc . /rootfs
COPY --from=musl . /rootfs
COPY --from=libunwind . /rootfs
COPY --from=openssl . /rootfs
COPY --from=ca-certificates . /rootfs
RUN --network=none cp /web-form/target/release/website-form /rootfs/usr/bin/website-form
FROM stagex/filesystem:sx2024.05.0@sha256:c504b17edae1bea8c139d058b20bebd383a0be1b4f57565d92cb578012f9c0f8 AS package

View File

@ -21,7 +21,7 @@ struct FormData {
company_name: Option<String>,
service: String,
help: String,
hear_about: String,
hear_about: Option<String>,
other_source: Option<String>,
}