Compare commits

..

No commits in common. "013e805ece3fe34a1395fc624734675732f2c3a0" and "97def1bab11e63c8e2a6119136f7c2759fffb06c" have entirely different histories.

3 changed files with 7 additions and 9 deletions

View File

@ -4,7 +4,7 @@ FROM rust:alpine AS builder
RUN apk add --no-cache musl-dev git RUN apk add --no-cache musl-dev git
WORKDIR /redsunlib WORKDIR /redlib
COPY . . COPY . .
@ -19,16 +19,16 @@ COPY --from=builder /usr/share/ca-certificates /usr/share/ca-certificates
COPY --from=builder /etc/ssl/certs /etc/ssl/certs COPY --from=builder /etc/ssl/certs /etc/ssl/certs
# Copy our build # Copy our build
COPY --from=builder /redsunlib/target/x86_64-unknown-linux-musl/release/redsunlib /usr/local/bin/redsunlib COPY --from=builder /redlib/target/x86_64-unknown-linux-musl/release/redlib /usr/local/bin/redlib
# Use an unprivileged user. # Use an unprivileged user.
RUN adduser --home /nonexistent --no-create-home --disabled-password redsunlib RUN adduser --home /nonexistent --no-create-home --disabled-password redlib
USER redsunlib USER redlib
# Tell Docker to expose port 8080 # Tell Docker to expose port 8080
EXPOSE 8080 EXPOSE 8080
# Run a healthcheck every minute to make sure redsunlib is functional # Run a healthcheck every minute to make sure redlib 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 ["redsunlib"] CMD ["redlib"]

View File

@ -1517,7 +1517,6 @@ summary.comment_data {
box-shadow: var(--shadow); box-shadow: var(--shadow);
margin-left: 20px; margin-left: 20px;
background: var(--foreground); background: var(--foreground);
width: 30%;
} }
aside.prefs { aside.prefs {

View File

@ -1,9 +1,8 @@
/* Catppuccin theme setting */
.catppuccin { .catppuccin {
--accent: #b4befe; /* lavender */ --accent: #b4befe; /* lavender */
--green: #a6e3a1; /* green */ --green: #a6e3a1; /* green */
--text: #cdd6f4; /* text */ --text: #cdd6f4; /* text */
--foreground: #181825; /* mantle */ --foreground: #11111b; /* crust */
--background: #1e1e2e; /* base */ --background: #1e1e2e; /* base */
--outside: #11111b; /* crust */ --outside: #11111b; /* crust */
--post: #11111b; /* crust */ --post: #11111b; /* crust */