Compare commits

...

2 commits

Author SHA1 Message Date
2768cbe2af
Do a couple small Dockerfile improvements
Some checks reported errors
continuous-integration/drone/push Build was killed
2024-01-05 23:12:39 +01:00
7b59d7db50
Fix a couple duplications 2024-01-05 23:12:23 +01:00
2 changed files with 6 additions and 10 deletions

View file

@ -1,9 +1,9 @@
FROM rust:alpine as builder FROM rust:alpine AS builder
WORKDIR /usr/src/empede WORKDIR /usr/src/empede
RUN apk add --no-cache build-base RUN apk add --no-cache build-base
COPY ./src ./src COPY ./src ./src
COPY ./templates ./templates COPY ./templates ./templates
COPY ./Cargo.* ./ COPY ./Cargo.toml ./Cargo.lock ./
RUN cargo install --path . RUN cargo install --path .
FROM alpine:latest FROM alpine:latest

View file

@ -28,7 +28,6 @@ button {
background-color: transparent; background-color: transparent;
border: none; border: none;
color: inherit; color: inherit;
padding: 0;
font-weight: bold; font-weight: bold;
display: flex; display: flex;
line-height: 24px; line-height: 24px;
@ -228,6 +227,10 @@ ul.dir li .material-symbols-outlined {
.albumart img { .albumart img {
visibility: hidden; visibility: hidden;
border-radius: 0.25rem;
width: 100%;
height: 100%;
object-fit: cover;
} }
.queue .albumart { .queue .albumart {
@ -239,13 +242,6 @@ ul.dir li .material-symbols-outlined {
margin-right: 0.75rem; margin-right: 0.75rem;
} }
.albumart img {
border-radius: 0.25rem;
width: 100%;
height: 100%;
object-fit: cover;
}
.track { .track {
margin-right: 0.75rem; margin-right: 0.75rem;
} }