5 lines
158 B
Docker
5 lines
158 B
Docker
FROM ghcr.io/zhaofengli/attic:latest
|
|
COPY ./entrypoint.sh /entrypoint.sh
|
|
COPY ./server.toml /attic/server.toml.tmpl
|
|
EXPOSE 8080
|
|
ENTRYPOINT ["/entrypoint.sh"]
|