Forgot to include this file
This commit is contained in:
11
Dockerfile
11
Dockerfile
@@ -35,15 +35,15 @@ COPY src ./src
|
|||||||
# If you have other directories like `templates` or `static`, copy them too
|
# If you have other directories like `templates` or `static`, copy them too
|
||||||
# COPY templates ./templates
|
# COPY templates ./templates
|
||||||
# COPY static ./static
|
# COPY static ./static
|
||||||
|
COPY .env ./.env
|
||||||
|
COPY migrations ./migrations
|
||||||
|
|
||||||
# << --- SSH MOUNT ADDED HERE --- >>
|
# << --- SSH MOUNT ADDED HERE --- >>
|
||||||
# Build *only* dependencies to leverage Docker cache
|
# Build *only* dependencies to leverage Docker cache
|
||||||
# This dummy build caches dependencies as a separate layer
|
# This dummy build caches dependencies as a separate layer
|
||||||
# Mount the SSH agent socket for this command
|
# Mount the SSH agent socket for this command
|
||||||
RUN --mount=type=ssh mkdir src && \
|
RUN --mount=type=ssh \
|
||||||
echo "fn main() {println!(\"if you see this, the build broke\")}" > src/main.rs && \
|
cargo build --release --quiet
|
||||||
cargo build --release --quiet && \
|
|
||||||
rm -rf src target/release/deps/icarus_auth* # Clean up dummy build artifacts
|
|
||||||
|
|
||||||
# Stage 2: Create the final, smaller runtime image
|
# Stage 2: Create the final, smaller runtime image
|
||||||
# Use a minimal base image like debian-slim or even distroless for security/size
|
# Use a minimal base image like debian-slim or even distroless for security/size
|
||||||
@@ -61,7 +61,8 @@ COPY --from=builder /usr/src/app/target/release/icarus_auth .
|
|||||||
|
|
||||||
# Copy other necessary files like .env (if used for runtime config) or static assets
|
# Copy other necessary files like .env (if used for runtime config) or static assets
|
||||||
# It's generally better to configure via environment variables in Docker though
|
# It's generally better to configure via environment variables in Docker though
|
||||||
# COPY --from=builder /usr/src/app/.env .
|
COPY --from=builder /usr/src/app/.env .
|
||||||
|
COPY --from=builder /usr/src/app/migrations ./migrations
|
||||||
# COPY --from=builder /usr/src/app/templates ./templates
|
# COPY --from=builder /usr/src/app/templates ./templates
|
||||||
# COPY --from=builder /usr/src/app/static ./static
|
# COPY --from=builder /usr/src/app/static ./static
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user