mirror of
https://github.com/glanceapp/glance.git
synced 2024-11-25 18:05:00 +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
|