mirror of
https://github.com/anyproto/any-sync-dockercompose.git
synced 2025-06-08 05:47:03 +09:00
6 lines
229 B
Text
6 lines
229 B
Text
# syntax=docker/dockerfile:1
|
|
FROM golang:1.22-alpine3.19
|
|
RUN apk add --no-cache bash yq
|
|
RUN go install github.com/anyproto/any-sync-tools/anyconf@latest
|
|
WORKDIR /code
|
|
ENTRYPOINT ["bash", "/code/docker-generateconfig/anyconf.sh"]
|