Correct path for binary in Dockerfile
Some checks failed
Fly Deploy / Deploy app (push) Failing after 29s

This commit is contained in:
Gabriel Simmer 2023-10-23 20:14:06 +01:00
parent d098beccae
commit a73e8cf1ab
Signed by: arch
SSH key fingerprint: SHA256:m3OEcdtrnBpMX+2BDGh/byv3hrCekCLzDYMdvGEKPPQ

View file

@ -24,7 +24,7 @@ RUN apt-get update -y && apt-get install -y ca-certificates && \
WORKDIR /app WORKDIR /app
# Get compiled binaries from builder's cargo install directory # Get compiled binaries from builder's cargo install directory
COPY --from=builder /usr/src/app/gabrielsimmerdotcom /app/gabrielsimmerdotcom COPY --from=builder /usr/src/app/target/release/gabrielsimmerdotcom /app/gabrielsimmerdotcom
COPY --from=builder /usr/src/app/posts/ /app/posts/ COPY --from=builder /usr/src/app/posts/ /app/posts/
COPY --from=builder /usr/src/app/assets/ /app/assets/ COPY --from=builder /usr/src/app/assets/ /app/assets/
COPY --from=builder /usr/src/app/dhall/ /app/dhall COPY --from=builder /usr/src/app/dhall/ /app/dhall