mirror of
https://github.com/glanceapp/glance.git
synced 2025-01-10 00:08:16 +01:00
10 lines
136 B
Docker
10 lines
136 B
Docker
FROM alpine:3.20
|
|
|
|
WORKDIR /app
|
|
|
|
# This binary is an artifact from goreleaser.
|
|
COPY glance .
|
|
ENTRYPOINT ["/app/glance"]
|
|
|
|
EXPOSE 8080/tcp
|