diff --git a/Dockerfile b/Dockerfile index df60bee..108a309 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 diff --git a/crates/web-form/src/main.rs b/crates/web-form/src/main.rs index a321ed6..58d76b3 100644 --- a/crates/web-form/src/main.rs +++ b/crates/web-form/src/main.rs @@ -21,7 +21,7 @@ struct FormData { company_name: Option, service: String, help: String, - hear_about: String, + hear_about: Option, other_source: Option, }