mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
6 lines
213 B
Docker
6 lines
213 B
Docker
|
FROM gh2k/fake-gcs-server
|
||
|
RUN apk add --update --no-cache curl
|
||
|
COPY healthcheck.sh /healthcheck.sh
|
||
|
HEALTHCHECK --interval=1s --timeout=1s --retries=30 CMD /healthcheck.sh http://localhost:9090
|
||
|
CMD ["--port=9090"]
|