Compare commits
No commits in common. "fe6241f10956db9037cedb768b55e32efc4dc26d" and "96135d5b34c0fb3b2b886ee8743cc1d7f38cb88f" have entirely different histories.
fe6241f109
...
96135d5b34
4 changed files with 0 additions and 26 deletions
|
@ -1 +0,0 @@
|
|||
target/
|
|
@ -1,9 +1,7 @@
|
|||
[package]
|
||||
name = "empede"
|
||||
description = "A web client for MPD"
|
||||
version = "0.1.7"
|
||||
edition = "2021"
|
||||
license = "MIT"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.70"
|
||||
|
|
18
Dockerfile
18
Dockerfile
|
@ -1,18 +0,0 @@
|
|||
FROM rust:1.69-alpine as builder
|
||||
WORKDIR /usr/src/empede
|
||||
RUN apk add --no-cache build-base
|
||||
COPY ./src ./src
|
||||
COPY ./templates ./templates
|
||||
COPY ./Cargo.* ./
|
||||
RUN cargo install --path .
|
||||
|
||||
FROM alpine:latest
|
||||
WORKDIR /app
|
||||
COPY --from=builder /usr/local/cargo/bin/empede ./
|
||||
COPY ./static ./static
|
||||
|
||||
ARG MPD_HOST
|
||||
ARG MPD_PORT
|
||||
ARG EMPEDE_BIND
|
||||
|
||||
CMD ["./empede"]
|
|
@ -1,9 +1,4 @@
|
|||
# Empede
|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
**A web client for MPD.**
|
||||
|
||||

|
||||
|
|
Loading…
Reference in a new issue