Browse Source
add macros to Docker build
Co-authored-by: dfunkt <dfunkt@users.noreply.github.com>
pull/5320/head
Stefan Melmuk
3 months ago
No known key found for this signature in database
GPG Key ID: 817020C608FE9C09
4 changed files with
4 additions and
0 deletions
-
.dockerignore
-
docker/Dockerfile.alpine
-
docker/Dockerfile.debian
-
docker/Dockerfile.j2
|
|
@ -5,6 +5,7 @@ |
|
|
|
!.git |
|
|
|
!docker/healthcheck.sh |
|
|
|
!docker/start.sh |
|
|
|
!macros |
|
|
|
!migrations |
|
|
|
!src |
|
|
|
|
|
|
|
|
|
@ -76,6 +76,7 @@ RUN source /env-cargo && \ |
|
|
|
|
|
|
|
# Copies over *only* your manifests and build files |
|
|
|
COPY ./Cargo.* ./rust-toolchain.toml ./build.rs ./ |
|
|
|
COPY ./macros ./macros |
|
|
|
|
|
|
|
ARG CARGO_PROFILE=release |
|
|
|
|
|
|
|
|
|
@ -116,6 +116,7 @@ RUN source /env-cargo && \ |
|
|
|
|
|
|
|
# Copies over *only* your manifests and build files |
|
|
|
COPY ./Cargo.* ./rust-toolchain.toml ./build.rs ./ |
|
|
|
COPY ./macros ./macros |
|
|
|
|
|
|
|
ARG CARGO_PROFILE=release |
|
|
|
|
|
|
|
|
|
@ -143,6 +143,7 @@ RUN source /env-cargo && \ |
|
|
|
|
|
|
|
# Copies over *only* your manifests and build files |
|
|
|
COPY ./Cargo.* ./rust-toolchain.toml ./build.rs ./ |
|
|
|
COPY ./macros ./macros |
|
|
|
|
|
|
|
ARG CARGO_PROFILE=release |
|
|
|
|
|
|
|