mirror of
https://github.com/glanceapp/glance.git
synced 2024-11-22 08:23:52 +01:00
8 lines
105 B
Docker
8 lines
105 B
Docker
|
FROM alpine:3.19
|
||
|
|
||
|
WORKDIR /app
|
||
|
COPY build/glance /app/glance
|
||
|
|
||
|
EXPOSE 8080/tcp
|
||
|
ENTRYPOINT ["/app/glance"]
|