mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-04 21:47:40 +03:00
Fix certificate error on ARM #193
This commit is contained in:
parent
5c2e134924
commit
46e22cf74e
1 changed files with 5 additions and 1 deletions
|
@ -16,6 +16,10 @@ RUN cargo install --path .
|
||||||
####################################################################################################
|
####################################################################################################
|
||||||
FROM alpine:latest
|
FROM alpine:latest
|
||||||
|
|
||||||
|
# Import ca-certificates from builder
|
||||||
|
COPY --from=builder /usr/share/ca-certificates /usr/share/ca-certificates
|
||||||
|
COPY --from=builder /etc/ssl/certs /etc/ssl/certs
|
||||||
|
|
||||||
# Copy our build
|
# Copy our build
|
||||||
COPY --from=builder /usr/local/cargo/bin/libreddit /usr/local/bin/libreddit
|
COPY --from=builder /usr/local/cargo/bin/libreddit /usr/local/bin/libreddit
|
||||||
|
|
||||||
|
@ -29,4 +33,4 @@ EXPOSE 8080
|
||||||
# Run a healthcheck every minute to make sure Libreddit is functional
|
# Run a healthcheck every minute to make sure Libreddit is functional
|
||||||
HEALTHCHECK --interval=1m --timeout=3s CMD wget --spider --q http://localhost:8080/settings || exit 1
|
HEALTHCHECK --interval=1m --timeout=3s CMD wget --spider --q http://localhost:8080/settings || exit 1
|
||||||
|
|
||||||
CMD ["libreddit"]
|
CMD ["libreddit"]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue