mirror of
https://github.com/BreizhHardware/glance.git
synced 2026-03-18 21:50:30 +01:00
11 lines
247 B
Docker
11 lines
247 B
Docker
FROM alpine:3.21
|
|
|
|
WORKDIR /app
|
|
COPY glance .
|
|
|
|
HEALTHCHECK --timeout=10s --start-period=60s --interval=60s \
|
|
CMD wget --spider -q http://localhost:8080/api/healthz
|
|
|
|
EXPOSE 8080/tcp
|
|
ENTRYPOINT ["/app/glance", "--config", "/app/config/glance.yml"]
|